Skip to content

Commit

Permalink
fix: remove stray draws
Browse files Browse the repository at this point in the history
  • Loading branch information
dhdaines committed Aug 16, 2024
1 parent 10d370d commit 19594b6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions rustfst-python/tests/algorithms/test_inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ def test_invert():
fst1.add_tr(s2, tr1_4)

fst1.invert()
fst1.draw("wtf.dot")

# Expected FST
expected_fst = VectorFst()
Expand All @@ -49,5 +48,4 @@ def test_invert():
tr1_4 = Tr(5, 3, 1.0, s3)
expected_fst.add_tr(s2, tr1_4)

expected_fst.draw("omg.dot")
assert expected_fst == fst1

0 comments on commit 19594b6

Please sign in to comment.