Skip to content

Commit 88263b9

Browse files
committed
Check if this fixes the plugin already loaded issue
1 parent 896400a commit 88263b9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/cases/issues/test_issue_374.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def test_something(self, app): pass
3232

3333
def test_overridden_fixtures(pytester):
3434
pytester.makepyfile(OVERRIDDEN_FIXTURES_TEST_FILE)
35-
result = pytester.runpytest("-p", "pytest_cases.plugin")
35+
result = pytester.runpytest()
3636
result.assert_outcomes(passed=2)
3737

3838

@@ -87,5 +87,5 @@ def test_something(self, msg): pass
8787

8888
def test_overridden_unions(pytester):
8989
pytester.makepyfile(OVERRIDDEN_UNION_FIXTURES_TEST_FILE)
90-
result = pytester.runpytest("-p", "pytest_cases.plugin")
90+
result = pytester.runpytest()
9191
result.assert_outcomes(passed=6)

0 commit comments

Comments
 (0)