Skip to content

Commit defefca

Browse files
committed
test js on Nim 1.6
1 parent 577c4ec commit defefca

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

regex.nimble

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ task test2, "Test":
2424
# the docker image for CI has it since Nim 1.0.4,
2525
# so I'll only test it there
2626
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
27-
(NimMajor, NimMinor) != (1, 4) and # issue #88
28-
(NimMajor, NimMinor) != (1, 6): # issue #123
27+
(NimMajor, NimMinor) != (1, 4): # issue #88
2928
exec "nim js -r src/regex.nim"
3029
exec "nim js -r tests/tests2.nim"
3130
exec "nim js -r -d:forceRegexAtRuntime tests/tests2.nim"
@@ -48,8 +47,7 @@ task oldtest, "Test":
4847
# the docker image for CI has it since Nim 1.0.4,
4948
# so I'll only test it there
5049
when (NimMajor, NimMinor, NimPatch) >= (1, 0, 4) and
51-
(NimMajor, NimMinor) != (1, 4) and # issue #88
52-
(NimMajor, NimMinor) != (1, 6):
50+
(NimMajor, NimMinor) != (1, 4): # issue #88
5351
exec "nim js -r tests/tests.nim"
5452
exec "nim js -r -d:forceRegexAtRuntime tests/tests.nim"
5553

0 commit comments

Comments
 (0)