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