From 5a7778516461890fde470c66e81688917179f6ff Mon Sep 17 00:00:00 2001 From: Mike Salvatore Date: Tue, 6 Jul 2021 11:56:25 -0400 Subject: [PATCH] Tests: Remove Path -> str implicit conversion warning --- monkey/tests/unit_tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/monkey/tests/unit_tests/conftest.py b/monkey/tests/unit_tests/conftest.py index c57cfa6f3..8e0fc96d9 100644 --- a/monkey/tests/unit_tests/conftest.py +++ b/monkey/tests/unit_tests/conftest.py @@ -3,6 +3,6 @@ import pytest @pytest.fixture def patched_home_env(monkeypatch, tmp_path): - monkeypatch.setenv("HOME", tmp_path) + monkeypatch.setenv("HOME", str(tmp_path)) return tmp_path