Commit 3b5bf01a by Arun Babu Neelicattu Committed by Bjorn Neergaard

tests: ensure mock env signature matches base class

parent 1dc969f6
...@@ -56,8 +56,8 @@ class MockEnv(BaseMockEnv): ...@@ -56,8 +56,8 @@ class MockEnv(BaseMockEnv):
} }
@property @property
def sys_path(self) -> list[Path]: def sys_path(self) -> list[str]:
return [ENV_DIR, SITE_PLATLIB, SITE_PURELIB] return [str(path) for path in [ENV_DIR, SITE_PLATLIB, SITE_PURELIB]]
@pytest.fixture @pytest.fixture
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment