Skip to content

Commit 89c5216

Browse files
committed
fixed test
1 parent 86159a4 commit 89c5216

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/system/data/test_metrics.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -439,12 +439,12 @@ async def test_status_retry(get_all_metrics, app_profile, final_status):
439439
# ReadRows will have more, because it is called multiple times in the test data
440440
for m in retry_counts:
441441
total_errors = sum([int(pt.value.int64_value) for pt in m.points])
442-
assert total_errors >= 2, f"{m} has {total_errors} errors"
442+
assert total_errors >= 2
443443
# each rpc should have at least one connectivity error
444444
# most will have 2, but will have 1 if status == NOT_FOUND
445445
for m in connectivity_error_counts:
446446
total_errors = sum([int(pt.value.int64_value) for pt in m.points])
447-
assert total_errors >= 1, f"{m} has {total_errors} errors"
447+
assert total_errors >= 1
448448

449449
# all operation-level status should be final_status
450450
for m in operation_latencies + retry_counts:

0 commit comments

Comments
 (0)