hotfix(test): Increase wait time to avoid race condition

This is a temporary fix to address a race condition that causes test failures on the windows-2022 and windows-2025 images.
This commit is contained in:
Jack Mahoney 2025-07-16 13:10:20 -07:00
parent 974e120ee5
commit 825f15e62b
No known key found for this signature in database
GPG Key ID: 9FB0A3A905392E9E
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ class TestTabBarShowOnClose:
config_stub.val.tabs.show = 'switching'
config_stub.val.tabs.show_on_close = True
tab_bar = widget.tabBar()
qtbot.wait(1)
qtbot.wait(3)
assert not tab_bar.isVisible()
widget.removeTab(0)