diff options
author | David Robillard <d@drobilla.net> | 2017-01-07 19:43:16 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2017-01-07 19:43:16 -0500 |
commit | ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe (patch) | |
tree | 824ac77ebdcee3dccf3a1f0a7c333f59dc34095d | |
parent | a2c2269777fa75f0aed6b3c0ac369d4bcd30e62f (diff) | |
download | serd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.tar.gz serd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.tar.bz2 serd-ae3d5603d62c9cc0cab2b1a57514f7c66f4409fe.zip |
Fix missing prefix in test report output
-rw-r--r-- | wscript | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |