From 794f142577a225dfec90b02e71c97b3a42b6f9dd Mon Sep 17 00:00:00 2001 From: Thomas Powell Date: Thu, 15 Aug 2024 13:57:52 -0400 Subject: [PATCH] source argument needs to be passed as an explicit hash now Signed-off-by: Thomas Powell --- features/commands/install.feature | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/commands/install.feature b/features/commands/install.feature index 31dfedbf5..2c755fd39 100644 --- a/features/commands/install.feature +++ b/features/commands/install.feature @@ -628,7 +628,7 @@ Feature: berks install Given I use a fixture named "complex-cookbook-path" And a file named "Berksfile" with: """ - source chef_repo: '.' + source({ :chef_repo => '.' }) cookbook 'jenkins-config' """ @@ -639,8 +639,8 @@ Feature: berks install """ And the output should contain: """ - Installing jenkins-config (0.1.0) from - """ + Installing jenkins-config (0.1.0) from + """ And the cookbook store should have the cookbooks: | jenkins | 2.0.1 | | jenkins-config | 0.1.0 |