Skip to content

Commit f9f7d13

Browse files
committed
Removed extraneous setdefault in acceptance test TestIsoScope.test_single_scope_subset_of_workers_utilized.
1 parent 50af2b5 commit f9f7d13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/acceptance_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ def test(i):
13081308
)
13091309
assert counts_by_worker.setdefault("gw0", 0) in (0, num_tests)
13101310
assert counts_by_worker.setdefault("gw1", 0) in (0, num_tests)
1311-
assert counts_by_worker["gw0"] + counts_by_worker.setdefault["gw1"] == num_tests
1311+
assert counts_by_worker["gw0"] + counts_by_worker["gw1"] == num_tests
13121312

13131313

13141314
class TestLoadScope:

0 commit comments

Comments
 (0)