]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
test: Fix typing error in integration-test-wrapper.py
authorDaan De Meyer <daan.j.demeyer@gmail.com>
Thu, 10 Apr 2025 18:38:49 +0000 (20:38 +0200)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Thu, 10 Apr 2025 21:20:25 +0000 (06:20 +0900)
test/integration-tests/integration-test-wrapper.py

index f0d0de359dea6c6977f263d6d214c60e51b5b925..9df00e843be203d0f7b2690167f685b66d477e1d 100755 (executable)
@@ -629,7 +629,7 @@ def main() -> None:
     elif os.getenv('TEST_JOURNAL_USE_TMP', '0') == '1' and journal_file.exists():
         dst = args.meson_build_dir / f'test/journal/{name}.journal'
         dst.parent.mkdir(parents=True, exist_ok=True)
-        journal_file = shutil.move(journal_file, dst)
+        journal_file = Path(shutil.move(journal_file, dst))
 
     if shell or (result.returncode in (args.exit_code, 77) and not coredumps and not sanitizer):
         exit(0 if shell or result.returncode == args.exit_code else 77)