Skip to content

Commit 93e01e5

Browse files
committed
fix var
1 parent fbd21a6 commit 93e01e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python_testing/test_testing/TestDecorators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ def run_check(test_name: str, read_response: Attribute.AsyncReadTransaction.Read
274274
stopped_ok = hooks.stopped == num_endpoints
275275
if not ok or not started_ok or not skipped_ok or not stopped_ok:
276276
failures.append(
277-
f'Expected {expected_runs} run of {test_name}, skips expected: {expect_skip}. Runs: {hooks.started}, skips: {hooks.skipped} stops: {hooks.stopped}')
277+
f'Expected {num_endpoints} run of {test_name}, skips expected: {expect_skip}. Runs: {hooks.started}, skips: {hooks.skipped} stops: {hooks.stopped}')
278278

279279
def check_once_per_endpoint(test_name: str):
280280
run_check(test_name, get_clusters([0, 1]), False)

0 commit comments

Comments
 (0)