diff options
Diffstat (limited to 'spec/unit/run_context_spec.rb')
-rw-r--r-- | spec/unit/run_context_spec.rb | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/spec/unit/run_context_spec.rb b/spec/unit/run_context_spec.rb index 33f2f49366..f78f63f494 100644 --- a/spec/unit/run_context_spec.rb +++ b/spec/unit/run_context_spec.rb @@ -57,31 +57,31 @@ 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", }, }, ) |