Commit d004971f authored by Jan Kiene's avatar Jan Kiene
Browse files

correct default value for cwd in basop_check_for_changes_in_testcases.py

parent 4828310f
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -270,7 +270,7 @@ if __name__ == "__main__":
    parser.add_argument(
        "--inject_cwd",
        help="Use this as cwd when pruning the long paths in the command lines. Debug option for testing.",
        default=pathlib.Path(__file__).parent.absolute(),
        default=pathlib.Path(os.getcwd()).absolute(),
        type=pathlib.Path,
    )