summaryrefslogtreecommitdiffstats
path: root/spec/unit/network/http/compression_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/network/http/compression_spec.rb')
-rw-r--r--spec/unit/network/http/compression_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/network/http/compression_spec.rb b/spec/unit/network/http/compression_spec.rb
index 63fd9e715..ace1f353a 100644
--- a/spec/unit/network/http/compression_spec.rb
+++ b/spec/unit/network/http/compression_spec.rb
@@ -175,13 +175,13 @@ describe "http compression" do
@inflater.expects(:inflate).raises(Zlib::DataError.new("not a zlib stream"))
inflater = stub_everything 'inflater2'
inflater.expects(:inflate).with("chunk").returns("uncompressed")
- Zlib::Inflate.expects(:new).with().returns(inflater)
+ Zlib::Inflate.expects(:new).with.returns(inflater)
@adapter.uncompress("chunk")
end
it "should raise the error the second time" do
@inflater.expects(:inflate).raises(Zlib::DataError.new("not a zlib stream"))
- Zlib::Inflate.expects(:new).with().returns(@inflater)
+ Zlib::Inflate.expects(:new).with.returns(@inflater)
lambda { @adapter.uncompress("chunk") }.should raise_error
end