Skip to content

Commit

Permalink
Renaming a test
Browse files Browse the repository at this point in the history
  • Loading branch information
darrenburns committed Jun 11, 2024
1 parent 0b41dbd commit 1f062dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/input/test_input_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,12 +194,12 @@ async def test_only_separators__raises_ValueError():
await pilot.press("a")


async def test_case_conversion_escape():
app = InputApp("N\\aN\\B\\cN")
async def test_custom_separator_escaping():
app = InputApp("N\\aN\\N\\cN")
async with app.run_test() as pilot:
input = app.query_one(Input)
await pilot.press("D", "e", "F")
assert input.value == "DaeBcF"
assert input.value == "DaeNcF"
assert input.is_valid


Expand Down

0 comments on commit 1f062dc

Please sign in to comment.