From 54c3a2e0da26a91237b6e17983419439d13c5bae Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Mon, 9 Sep 2024 17:55:35 +0100 Subject: [PATCH] test fix --- tests/test_test_runner.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_test_runner.py b/tests/test_test_runner.py index 0bae14a0bd..8bb80d2071 100644 --- a/tests/test_test_runner.py +++ b/tests/test_test_runner.py @@ -12,9 +12,9 @@ def on_key(self, event: events.Key) -> None: app = TestApp() async with app.run_test() as pilot: - assert ( - str(pilot) - == "" + assert str(pilot) in ( + "", + "", ) await pilot.press("tab", *"foo") await pilot.exit("bar")