summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2012-03-10 20:57:44 -0800
committerAndre Arko <andre@arko.net>2012-03-10 20:57:44 -0800
commit9811a3db0ab2cb6d213c2f50492e74a61911c572 (patch)
tree5bfeba9425ad14e033c1b51f54bb06e8b12178ee
parent1e82d7f9c32e47cc8624d38742a5535f603fd0a0 (diff)
downloadbundler-9811a3db0ab2cb6d213c2f50492e74a61911c572.tar.gz
fix void use of == warning
-rw-r--r--spec/other/clean_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/other/clean_spec.rb b/spec/other/clean_spec.rb
index 89f17ad525..aa72ab8ef6 100644
--- a/spec/other/clean_spec.rb
+++ b/spec/other/clean_spec.rb
@@ -465,8 +465,8 @@ describe "bundle clean" do
sys_status "foo"
- exitstatus.should == 0
- out.should == "1.0"
+ exitstatus.should eq(0)
+ out.should eq("1.0")
end
it "doesn't blow up on path gems without a .gempsec" do