fixed test to reflect small Int caching

This commit is contained in:
Sergey Chernov 2025-12-23 10:48:58 +01:00
parent 7e8f1406b5
commit 17b4904ae3

View File

@ -347,8 +347,6 @@ Reference quality and object equality example:
assert( null == null) // singletons
assert( null === null)
// but, for non-singletons:
assert( 5 == 5)
assert( 5 !== 5)
assert( "foo" !== "foo" )
>>> void