Skip to content

Commit ffb8fb0

Browse files
committed
Remove test that causes errors in test shutdown
- using fs_module can cause such errors with some combinations of tests - should fix #687
1 parent c88c85a commit ffb8fb0

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

pyfakefs/pytest_tests/pytest_plugin_test.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
import os
33
import tempfile
44

5-
import pytest
6-
75
from pyfakefs.fake_filesystem_unittest import Pause
86

97

@@ -52,13 +50,3 @@ def test_pause_resume_contextmanager(fs):
5250
assert os.path.exists(real_temp_file.name)
5351
assert not os.path.exists(real_temp_file.name)
5452
assert os.path.exists(fake_temp_file.name)
55-
56-
57-
class TestModuleScopedFsWithTmpdir:
58-
@pytest.fixture(autouse=True)
59-
def test_internal(self, tmpdir):
60-
yield
61-
62-
def test_fail(self, fs_module):
63-
# Regression test for #684
64-
assert True

0 commit comments

Comments
 (0)