Skip to content

Commit

Permalink
cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Jan 21, 2024
1 parent c6698e5 commit 79dca1f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions tests/unit/input/tinput.nim
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,6 @@ suite "Input DFA":
].toTable

var dfa = buildDFA(commands)
# dfa.dump(0, 0, {})
writeFile("dfa.dot", dfa.dumpGraphViz())

check dfa.stepString("w") == "select-last \"word 0\""
check dfa.stepString("dw") == "delete-move \"word 0\" 0"
Expand Down Expand Up @@ -118,5 +116,4 @@ suite "Input DFA":
var commands: seq[(string, string)] = @[]
commands.add ("<S-:>", "success")
var dfa = buildDFA(commands, @[""])
writeFile("dfa2.dot", dfa.dumpGraphViz())
check dfa.stepString("<S-:>") == "success"

0 comments on commit 79dca1f

Please sign in to comment.