Tests: Remove Path -> str implicit conversion warning

This commit is contained in:
Mike Salvatore 2021-07-06 11:56:25 -04:00
parent a512fd947a
commit 5a77785164
1 changed files with 1 additions and 1 deletions

View File

@ -3,6 +3,6 @@ import pytest
@pytest.fixture @pytest.fixture
def patched_home_env(monkeypatch, tmp_path): def patched_home_env(monkeypatch, tmp_path):
monkeypatch.setenv("HOME", tmp_path) monkeypatch.setenv("HOME", str(tmp_path))
return tmp_path return tmp_path