diff options
author | David Robillard <d@drobilla.net> | 2023-03-27 19:14:40 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2023-12-02 18:49:08 -0500 |
commit | 959a0db69fa0a61b8a131ee49f9a553f0e01f3e1 (patch) | |
tree | c57d91a0bee4ab8ae998ec355d612a583e8d6512 /test/test_stdin.py | |
parent | 0e9169e24fcfc4599a62f85991f407f257fec520 (diff) | |
download | serd-959a0db69fa0a61b8a131ee49f9a553f0e01f3e1.tar.gz serd-959a0db69fa0a61b8a131ee49f9a553f0e01f3e1.tar.bz2 serd-959a0db69fa0a61b8a131ee49f9a553f0e01f3e1.zip |
Add base URI command-line option
Diffstat (limited to 'test/test_stdin.py')
-rwxr-xr-x | test/test_stdin.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_stdin.py b/test/test_stdin.py index 9975c547..9ffd19ff 100755 --- a/test/test_stdin.py +++ b/test/test_stdin.py @@ -10,7 +10,7 @@ import serd_test_util as util args = util.wrapper_args(__doc__) -command = [args.tool, "-i", "ntriples", "-", "http://example.org"] +command = [args.tool, "-i", "ntriples", "-B", "http://example.org", "-"] DOC = "<{0}s> <{0}p> <{0}o> .".format("http://example.org/") |