diff --git a/tests/vm/tableinstatic.nim b/tests/vm/tableinstatic.nim index b0d24b4771..54dbab50fc 100644 --- a/tests/vm/tableinstatic.nim +++ b/tests/vm/tableinstatic.nim @@ -2,7 +2,6 @@ discard """ nimout: '''0 0 0 -{"hallo": "123", "welt": "456"}''' """ import tables @@ -35,4 +34,4 @@ static: otherTable["hallo"] = "123" otherTable["welt"] = "456" - echo otherTable + assert otherTable == {"hallo": "123", "welt": "456"}.newTable