aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_multifile.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_multifile.py')
-rwxr-xr-xtest/test_multifile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_multifile.py b/test/test_multifile.py
index 5fb44bc5..c5e11bf3 100755
--- a/test/test_multifile.py
+++ b/test/test_multifile.py
@@ -12,7 +12,7 @@ import tempfile
parser = argparse.ArgumentParser(description=__doc__)
-parser.add_argument("--serdi", default="./serdi", help="path to serdi")
+parser.add_argument("--tool", default="tools/serd-pipe", help="executable")
parser.add_argument("--wrapper", default="", help="executable wrapper")
parser.add_argument("testdir", help="multifile test directory")
@@ -20,7 +20,7 @@ args = parser.parse_args(sys.argv[1:])
in1_path = os.path.join(args.testdir, "input1.ttl")
in2_path = os.path.join(args.testdir, "input2.trig")
check_path = os.path.join(args.testdir, "output.nq")
-command = shlex.split(args.wrapper) + [args.serdi, in1_path, in2_path]
+command = shlex.split(args.wrapper) + [args.tool, in1_path, in2_path]
def _show_diff(from_lines, to_lines, from_filename, to_filename):