summaryrefslogtreecommitdiff
path: root/spec/unit/provider/remote_file/http_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/provider/remote_file/http_spec.rb')
-rw-r--r--spec/unit/provider/remote_file/http_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/provider/remote_file/http_spec.rb b/spec/unit/provider/remote_file/http_spec.rb
index e763a60e6f..4411bff9cf 100644
--- a/spec/unit/provider/remote_file/http_spec.rb
+++ b/spec/unit/provider/remote_file/http_spec.rb
@@ -165,8 +165,8 @@ describe Chef::Provider::RemoteFile::HTTP do
let(:rest) do
rest = mock(Chef::HTTP::Simple)
- rest.stub!(:streaming_request).and_return(tempfile)
- rest.stub!(:last_response).and_return(last_response)
+ rest.stub(:streaming_request).and_return(tempfile)
+ rest.stub(:last_response).and_return(last_response)
rest
end