summaryrefslogtreecommitdiff
path: root/spec/unit/run_context_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/run_context_spec.rb')
-rw-r--r--spec/unit/run_context_spec.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/spec/unit/run_context_spec.rb b/spec/unit/run_context_spec.rb
index 99801575ef..efc2a6f63f 100644
--- a/spec/unit/run_context_spec.rb
+++ b/spec/unit/run_context_spec.rb
@@ -57,33 +57,33 @@ describe Chef::RunContext do
expect(run_context.node[:cookbooks]).to eql(
{
"circular-dep1" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"circular-dep2" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"dependency1" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"dependency2" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"include" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"no-default-attr" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"test" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"test-with-circular-deps" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
"test-with-deps" => {
- "version" => "0.0.0",
+ "version" => "0.0.0"
},
- }
+ },
)
end