Skip to content

Commit 15bc037

Browse files
committed
[GR-19220] Actually assert in spec for rb_hash_start (#1871).
PullRequest: truffleruby/1231
2 parents 13e12d3 + 6a2f40e commit 15bc037

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/ruby/optional/capi/hash_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def h.to_hash; 42; end
260260
hash_code = @s.compute_a_hash_code(53)
261261
hash_code.should be_an_instance_of(Integer)
262262
hash_code.should == @s.compute_a_hash_code(53)
263-
@s.compute_a_hash_code(90) == @s.compute_a_hash_code(90)
263+
@s.compute_a_hash_code(90).should == @s.compute_a_hash_code(90)
264264
end
265265
end
266266
end

0 commit comments

Comments
 (0)