cc: explicitly cast tmpdir to str in test_island_logger.py

This commit is contained in:
Mike Salvatore 2021-02-12 11:57:16 -05:00
parent 1f57610005
commit 21e0b5170b
1 changed files with 1 additions and 1 deletions

View File

@ -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):