diff options
author | arie <arie@alleycat.cc> | 2021-06-17 14:13:56 +0200 |
---|---|---|
committer | arie <arie@alleycat.cc> | 2021-06-28 21:03:35 +0200 |
commit | 9b771ca73327985f1d88cb2bb5a8402dc89814fc (patch) | |
tree | b948586af4b1724637ddd89970f4a27dd6cd313e /test | |
parent | e585d8bdd3bd491b84c9400170b674ba46c58b59 (diff) |
Rdf-turtle
Improve pp functions and parsers. The pp_functions print a turtle doc
to a certain satisfaction now, and the parsers work likewise.
Still, there are things that can happen unexpectedly.
The code is a bit cleaner now.
An issue is: how do we test this properly?
Diffstat (limited to 'test')
-rw-r--r-- | test/turtle/main.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/turtle/main.ml b/test/turtle/main.ml index db4193d..5b95da4 100644 --- a/test/turtle/main.ml +++ b/test/turtle/main.ml @@ -333,7 +333,7 @@ let directive_test_case = "@base <http://one.example/> .", Directive.of_iriref (Iriref.of_string "http://one.example/") ; - "@prefix foaf: <http://xmlns.com/foaf/0.1/> .", + "@prefix foaf: <http://xmlns.com/foaf/0.1/> ", Directive.of_string_and_iriref "foaf" (Iriref.of_string "http://xmlns.com/foaf/0.1/") |