fix(data_dir): remove dot files everywhere

This commit is contained in:
2026-04-20 10:06:48 +02:00
parent 978b799ee8
commit fc7d3cb0e8
3 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class BaseTestCase(unittest.TestCase):
self.tmp_path = pathlib.Path(self.tmp_dir.name)
return self.tmp_dir.name
def mock(self, spec: type | None = None) -> unittest.mock.Mock:
def new_mock(self, spec: type | None = None) -> unittest.mock.Mock:
mock = unittest.mock.Mock(spec)
self.mocks += [mock]
return mock