Use PosixPath arguments with os.remove()
[mudpy.git] / mudpy / tests / selftest.py
index ede3cb2..bb19d33 100644 (file)
@@ -477,9 +477,7 @@ def start_service(config):
 
     # Clean up any previous test output
     for f in pathlib.Path(".").glob("capture_*.log"):
-        # have to use .name here since remove() doesn't support passing a
-        # PosixPath argument until Python3.6
-        os.remove(f.name)
+        os.remove(f)
     for d in ("data", "var"):
         shutil.rmtree(d, ignore_errors=True)