forked from p15670423/monkey
Tests: Remove Path -> str implicit conversion warning
This commit is contained in:
parent
a512fd947a
commit
5a77785164
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue