aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_write_error.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_write_error.py')
-rwxr-xr-xtest/test_write_error.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/test_write_error.py b/test/test_write_error.py
index 35b4693b..bc955ce9 100755
--- a/test/test_write_error.py
+++ b/test/test_write_error.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
-"""Test errors writing to a file."""
+"""Test errors when writing to a file."""
import argparse
import sys
@@ -10,12 +10,12 @@ import os
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("input", help="valid input file")
args = parser.parse_args(sys.argv[1:])
-command = shlex.split(args.wrapper) + [args.serdi, args.input]
+command = shlex.split(args.wrapper) + [args.tool, args.input]
if os.path.exists("/dev/full"):