Merge pull request #56 from werebus/integer-object-id

Fix assertion about the class of `Object#object_id`
This commit is contained in:
Tony Schneider
2026-01-10 08:30:36 -05:00
committed by GitHub

View File

@@ -21,7 +21,7 @@ class AboutObjects < Neo::Koan
def test_every_object_has_an_id
obj = Object.new
assert_equal __(Fixnum), obj.object_id.class
assert obj.object_id.is_a?(__(Integer))
end
def test_every_object_has_different_id