summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/gt_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/gt_spec.rb')
-rw-r--r--spec/ruby/core/hash/gt_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/hash/gt_spec.rb b/spec/ruby/core/hash/gt_spec.rb
index cd541d4d83..69d23b7d29 100644
--- a/spec/ruby/core/hash/gt_spec.rb
+++ b/spec/ruby/core/hash/gt_spec.rb
@@ -8,7 +8,7 @@ describe "Hash#>" do
it "returns false if both hashes are identical" do
h = { a: 1, b: 2 }
- (h > h).should be_false
+ (h > h).should == false
end
end