Skip to content

Commit

Permalink
Rename variable
Browse files Browse the repository at this point in the history
  • Loading branch information
spagh-eddie committed Aug 30, 2023
1 parent b0cf674 commit 4a292fb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_letterboxed.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ def test_simple() -> None:
assert ("hello,", "world!") not in solutions
assert ("brawls", "sousaphone") in solutions

solutions = run("hesopwablurn")
assert "hello, world!" not in solutions
assert "brawls sousaphone" in solutions
out = run("hesopwablurn")
assert "hello, world!" not in out
assert "brawls sousaphone" in out


def test_intrarepeated_characters() -> None:
Expand Down

0 comments on commit 4a292fb

Please sign in to comment.