summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authordanielsdeleo <dan@opscode.com>2013-10-24 13:12:46 -0700
committerdanielsdeleo <dan@opscode.com>2013-10-24 13:17:02 -0700
commit28fadc62febbc9e6ba0c959518132dae2b2494cf (patch)
tree0e9e616a238005ba7f13731445b82e22783eb3e6 /spec/unit
parentd2c805e50c552a347f5ac08e3fce898f6a86a9e0 (diff)
downloadchef-28fadc62febbc9e6ba0c959518132dae2b2494cf.tar.gz
Application::Solo must set @chef_client_json
A past refactor was incomplete, leaving references to chef_solo_json. The contract with the superclass is that json data is set to @chef_client_json
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/application/solo_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/application/solo_spec.rb b/spec/unit/application/solo_spec.rb
index 6dd8c8f147..41e0cf3b2b 100644
--- a/spec/unit/application/solo_spec.rb
+++ b/spec/unit/application/solo_spec.rb
@@ -60,7 +60,7 @@ describe Chef::Application::Solo do
it "reads the JSON attributes from the specified source" do
@app.reconfigure
- @app.chef_solo_json.should == json_attribs
+ @app.chef_client_json.should == json_attribs
end
end