From 0fc42fc4f702a719c8203f525e9bfbb3163a6c32 Mon Sep 17 00:00:00 2001 From: narimiran Date: Mon, 27 May 2019 21:41:24 +0200 Subject: [PATCH] tableinstatic test: make it arch-independed --- tests/vm/tableinstatic.nim | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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