Skip to content

Commit

Permalink
re-enable tests (#23591)
Browse files Browse the repository at this point in the history
  • Loading branch information
ringabout authored May 10, 2024
1 parent fcc43fa commit c91b33a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions tests/enum/tenum.nim
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit c91b33a

Please sign in to comment.