cc: explicitly cast tmpdir to str in test_island_logger.py
This commit is contained in:
parent
1f57610005
commit
21e0b5170b
|
@ -10,7 +10,7 @@ TEST_LOGGER_CONFIG_PATH = os.path.join(
|
|||
|
||||
|
||||
def set_home_env(monkeypatch, tmpdir):
|
||||
monkeypatch.setenv("HOME", tmpdir)
|
||||
monkeypatch.setenv("HOME", str(tmpdir))
|
||||
|
||||
|
||||
def test_expanduser_filename(monkeypatch, tmpdir):
|
||||
|
|
Loading…
Reference in New Issue