summaryrefslogtreecommitdiff
path: root/spec/unit/shell
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/shell')
-rw-r--r--spec/unit/shell/shell_session_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/shell/shell_session_spec.rb b/spec/unit/shell/shell_session_spec.rb
index d305ed0ec6..e5fc46e945 100644
--- a/spec/unit/shell/shell_session_spec.rb
+++ b/spec/unit/shell/shell_session_spec.rb
@@ -52,7 +52,7 @@ describe Shell::ClientSession do
@session = Shell::ClientSession.instance
@node = Chef::Node.build("foo")
@session.node = @node
- @session.instance_variable_set(:@client, stub(:sync_cookbooks => {}))
+ @session.instance_variable_set(:@client, double(:sync_cookbooks => {}))
@expansion = Chef::RunList::RunListExpansion.new(@node.chef_environment, [])
@node.run_list.should_receive(:expand).with(@node.chef_environment).and_return(@expansion)