aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-01-07 19:43:16 -0500
committerDavid Robillard <d@drobilla.net>2017-01-07 19:43:16 -0500
commitae3d5603d62c9cc0cab2b1a57514f7c66f4409fe (patch)
tree824ac77ebdcee3dccf3a1f0a7c333f59dc34095d
parenta2c2269777fa75f0aed6b3c0ac369d4bcd30e62f (diff)
downloadserd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.tar.gz
serd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.tar.bz2
serd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.zip
Fix missing prefix in test report output
-rw-r--r--wscript4
1 files changed, 2 insertions, 2 deletions
diff --git a/wscript b/wscript
index c5bd9ada..3f6d63e3 100644
--- a/wscript
+++ b/wscript
@@ -513,8 +513,8 @@ def test(ctx):
# Start test report with serd information
report = open('earl.ttl', 'w')
report.write('''@prefix earl: <http://www.w3.org/ns/earl#> .
-@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .\n''')
-
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix dc: <http://purl.org/dc/elements/1.1/> .\n''')
serd_ttl = open(os.path.join(srcdir, 'serd.ttl'))
for line in serd_ttl:
report.write(line)