Skip to content

Commit 21ccce5

Browse files
committed
Fix test_fence_scopes pytest filename in acceptance test TestIsoScope.test_multi_scope_with_insufficient_fence.
1 parent cc42f20 commit 21ccce5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

testing/acceptance_test.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ def test1(self):
13421342
def test2(self):
13431343
pass
13441344
"""
1345-
pytester.makepyfile(test_a=test_file1, fence_tests=test_file2)
1345+
pytester.makepyfile(test_a=test_file1, test_fence_scopes=test_file2)
13461346
result = pytester.runpytest("-n3", "--dist=isoscope", "-v")
13471347

13481348
counts_by_worker_a = get_workers_and_test_count_by_prefix(
@@ -1355,10 +1355,10 @@ def test2(self):
13551355
assert counts_by_worker_a[worker] == 2
13561356

13571357
counts_by_worker_fence_a = get_workers_and_test_count_by_prefix(
1358-
"fence_tests.py::TestFenceA", result.outlines
1358+
"test_fence_scopes.py::TestFenceA", result.outlines
13591359
)
13601360
counts_by_worker_fence_b = get_workers_and_test_count_by_prefix(
1361-
"fence_tests.py::TestFenceB", result.outlines
1361+
"test_fence_scopes.py::TestFenceB", result.outlines
13621362
)
13631363

13641364
assert len(counts_by_worker_fence_a) == 1

0 commit comments

Comments
 (0)