Skip to content

Commit 6a2f40e

Browse files
XrXrchrisseaton
authored andcommitted
Actually assert in spec for rb_hash_start
1 parent f0c3d6a commit 6a2f40e

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)