summaryrefslogtreecommitdiff
path: root/spec/ruby/core/hash/lte_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/hash/lte_spec.rb')
-rw-r--r--spec/ruby/core/hash/lte_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/ruby/core/hash/lte_spec.rb b/spec/ruby/core/hash/lte_spec.rb
index a166e5bca4..29e60273d1 100644
--- a/spec/ruby/core/hash/lte_spec.rb
+++ b/spec/ruby/core/hash/lte_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