summary refs log tree commit diff stats
path: root/tests/enum
diff options
context:
space:
mode:
authorringabout <43030857+ringabout@users.noreply.github.com>2024-05-10 22:17:58 +0800
committerGitHub <noreply@github.com>2024-05-10 16:17:58 +0200
commitc91b33aaba4234d8abdf04af102d71b86e285c58 (patch)
tree775bd1d398c6c254569f2549df397369f0968d07 /tests/enum
parentfcc43fa9c8c501f9390811db6e5e074c57d6c663 (diff)
downloadNim-c91b33aaba4234d8abdf04af102d71b86e285c58.tar.gz
re-enable tests (#23591)
Diffstat (limited to 'tests/enum')
-rw-r--r--tests/enum/tenum.nim6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/enum/tenum.nim b/tests/enum/tenum.nim
index 5348fa528..a03019c5d 100644
--- a/tests/enum/tenum.nim
+++ b/tests/enum/tenum.nim
@@ -197,8 +197,7 @@ block: # unordered enum
         b = 0
 
     doAssert (ord(a), ord(b)) == (1, 0)
-    when false: # TODO: fixme pre-existing issues # bug #23586
-      doAssert unordered_enum.toSeq == @[a, b]
+    doAssert unordered_enum.toSeq == @[a, b]
 
   block:
     type
@@ -228,8 +227,7 @@ block: # unordered enum
         d
 
     doAssert (ord(a), ord(b), ord(c), ord(d)) == (7, 6, 5, 8)
-    when false:
-      doAssert unordered_enum.toSeq == @[a, b, c, d]
+    doAssert unordered_enum.toSeq == @[a, b, c, d]
 
   block:
     type