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 ef81227 commit 6de51be
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 @@ -136,7 +136,7 @@ def browser_independent_single_callback_request_assert(
# There are 2 requests which are send
# 1. first: changed-layout to server -> new data to back-end request
# 2. the front-end relayout request
assert len(requests) >= 1
assert len(requests) >= 1, f"len(requests) = {len(requests)}"
if len(requests) == 2:
fetch_data_request, relayout_request = requests
# RequestParser.assert_front_end_relayout_request(relayout_request)
Expand Down

0 comments on commit 6de51be

Please sign in to comment.