Skip to content

Commit 1570f49

Browse files
authored
chore(test): Add assertion message (#779)
1 parent c4656cf commit 1570f49

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_workspacebuilder.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,9 @@ def check_window_name_match() -> bool:
396396
session.server._update_windows()
397397
return w.name == portable_command
398398

399-
assert retry_until(check_window_name_match, 2, interval=0.25)
399+
assert retry_until(
400+
check_window_name_match, 2, interval=0.25
401+
), f"Window name {w.name} should be {portable_command}"
400402

401403
w.select_pane("-D")
402404

0 commit comments

Comments
 (0)