diff options
Diffstat (limited to 'tests/system/tdollars.nim')
-rw-r--r-- | tests/system/tdollars.nim | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/system/tdollars.nim b/tests/system/tdollars.nim index 913db7c86..39337cca7 100644 --- a/tests/system/tdollars.nim +++ b/tests/system/tdollars.nim @@ -45,8 +45,7 @@ block: # `$`(SomeInteger) check $int8.low == "-128" check $int8(-128) == "-128" - when not defined js: # pending https://github.com/nim-lang/Nim/issues/14127 - check $cast[int8](-128) == "-128" + check $cast[int8](-128) == "-128" var a = 12345'u16 check $a == "12345" |