Skip to content

Commit

Permalink
🖊️ more verbose asserts
Browse files Browse the repository at this point in the history
  • Loading branch information
jvdd committed Aug 29, 2024
1 parent cc3921e commit ef81227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/fr_selenium.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def browser_independent_single_callback_request_assert(
elif "chrome" in browser_name:
# for some, yet unknown reason, chrome does not seem to capture the
# second front-end request.
assert len(requests) == 1
assert len(requests) == 1, f"len(requests) = {len(requests)}"
fetch_data_request = requests[0]
else:
raise ValueError(f"invalid browser name {browser_name}")
Expand Down

0 comments on commit ef81227

Please sign in to comment.