summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2011-05-24 09:07:44 -0700
committerAndre Arko <andre@arko.net>2011-05-24 09:07:53 -0700
commit322321e9f71c0b5ffdb703ad4e5c29b403ed4682 (patch)
tree41831c47a2e2585af98eb3b0b71f718fb980079c /spec/support
parent5711953c1892e6684b2f2cff5d3fbe87397545d0 (diff)
downloadbundler-322321e9f71c0b5ffdb703ad4e5c29b403ed4682.tar.gz
un-check everything
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/matchers.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb
index be6837fc82..361a03304e 100644
--- a/spec/support/matchers.rb
+++ b/spec/support/matchers.rb
@@ -35,7 +35,7 @@ module Spec
version_const = name == 'bundler' ? 'Bundler::VERSION' : Spec::Builders.constantize(name)
run "require '#{name}.rb'; puts #{version_const}", *groups
actual_version, actual_platform = out.split(/\s+/)
- check Gem::Version.new(actual_version).should == Gem::Version.new(version)
+ Gem::Version.new(actual_version).should eq(Gem::Version.new(version))
actual_platform.should == platform
end
end