aboutsummaryrefslogtreecommitdiff
path: root/app/tests/test_taskview.py
diff options
context:
space:
mode:
authorhistoria <historiavg@proton.me>2026-08-26 17:46:48 -0400
committerhistoria <historiavg@proton.me>2026-08-26 17:46:48 -0400
commit6ccb6d443d2fb871b43d96ea61a95bc3e6a92355 (patch)
treed692ddccd6ec212cf4ebabb25a85e83af479d0fe /app/tests/test_taskview.py
parentc147087c9d4707bffaeee58d390653637a21cce8 (diff)
downloadtts-audiobook-generator-6ccb6d443d2fb871b43d96ea61a95bc3e6a92355.tar.gz
feat: combined install/configure tui screens into one menu, removed extraneous wizard screens
Diffstat (limited to 'app/tests/test_taskview.py')
-rw-r--r--app/tests/test_taskview.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/tests/test_taskview.py b/app/tests/test_taskview.py
index 6c984ad..b7f4389 100644
--- a/app/tests/test_taskview.py
+++ b/app/tests/test_taskview.py
@@ -570,7 +570,8 @@ class LanesViewTests(_FakeTui, unittest.TestCase):
view.render()
pane_w = (screen.width - 3) // 2
rects = [(1, pane_w), (1 + pane_w + 1, (screen.width - 3) - pane_w)]
- for expected, (px, pw) in zip(("52/794", "45%"), rects):
+ for expected, (px, pw) in zip(("52/794", "45%"), rects,
+ strict=False):
found = [(x, t) for _, x, t, _ in screen.strings if t == expected]
self.assertEqual(len(found), 1, expected)
x, label = found[0]