From 97627107cf0bd1c76ab993408df91dde8c3df823 Mon Sep 17 00:00:00 2001 From: Will McGugan Date: Fri, 30 Dec 2022 15:01:57 +0000 Subject: [PATCH] add pause --- tests/snapshot_tests/test_snapshots.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/snapshot_tests/test_snapshots.py b/tests/snapshot_tests/test_snapshots.py index a2c67595e..5650fcf1c 100644 --- a/tests/snapshot_tests/test_snapshots.py +++ b/tests/snapshot_tests/test_snapshots.py @@ -71,7 +71,8 @@ def test_input_and_focus(snap_compare): "tab", *"Darren", # Focus first input, write "Darren" "tab", - *"Burns", # Tab focus to second input, write "Burns" + *"Burns", + "_", # Tab focus to second input, write "Burns" ] assert snap_compare(WIDGET_EXAMPLES_DIR / "input.py", press=press)