From a779be4a81e9eed4b45e98e40954520cc3d3a16f Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Wed, 17 Dec 2025 10:06:09 -0600 Subject: [PATCH] test: update deprecated method call --- tests/test_app.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_app.py b/tests/test_app.py index b6f4c7a..cd2236b 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -56,8 +56,7 @@ class TestAppHandler(FileTestCase): self.assertIs(obj, UNSPECIFIED) def test_get_appdir(self): - - mockdir = self.mkdir("mockdir") + mockdir = self.mkdtemp() # default appdir with patch.object(sys, "prefix", new=mockdir):