Skip to content

Commit

Permalink
no op
Browse files Browse the repository at this point in the history
  • Loading branch information
pmaher86 committed Aug 29, 2023
1 parent 3b14785 commit 0fd365b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_crossword.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def test_clues_after_reparse(self, xw: Crossword):
def test_single_letter(self):
grid = [['#', '#', '#', '#', 'A'],
['B', 'A', 'D', '#', 'C'],
['#', '#', '#', '#', 'E']]
['#', '#', '#', '#', 'T']]
xw = Crossword(grid=grid)
assert xw[ACROSS, 2].value == "BAD"

Expand All @@ -102,7 +102,7 @@ def test_from_puz(self):
def test_to_pdf(self, xw, tmp_path):
filename = tmp_path / "test.pdf"
xw.to_pdf(filename, ["Line 1", "Line 2"])
assert tmp_path.exists()
assert tmp_path.exists()


class TestCrosswordProperties:
Expand Down

0 comments on commit 0fd365b

Please sign in to comment.