diff options
Diffstat (limited to 'test/test_stdin.py')
-rwxr-xr-x | test/test_stdin.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/test/test_stdin.py b/test/test_stdin.py index 28286e09..9a27fcd9 100755 --- a/test/test_stdin.py +++ b/test/test_stdin.py @@ -14,7 +14,12 @@ parser.add_argument("--serdi", default="./serdi", help="path to serdi") parser.add_argument("--wrapper", default="", help="executable wrapper") args = parser.parse_args(sys.argv[1:]) -command = shlex.split(args.wrapper) + [args.serdi, "-"] +command = shlex.split(args.wrapper) + [ + args.serdi, + "-I", + "http://example.org", + "-", +] DOCUMENT = "<{0}s> <{0}p> <{0}o> .".format("http://example.org/") |