diff options
-rw-r--r-- | tests/vm/tconst.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/vm/tconst.nim b/tests/vm/tconst.nim index 3ebbec043..553f0c136 100644 --- a/tests/vm/tconst.nim +++ b/tests/vm/tconst.nim @@ -28,7 +28,7 @@ template main() = Compiled at: $2, $3 """ % [NimVersion & spaces(44-len(NimVersion)), CompileDate, CompileTime] let b = $a - doAssert CompileTime in b + doAssert CompileTime in b, $(b, CompileTime) doAssert NimVersion in b static: main() |