aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-07-08 14:08:06 -0400
committerDavid Robillard <d@drobilla.net>2021-07-09 14:50:07 -0400
commitff8ab60025f447dc8ba834be3d9a18e5b45cfb18 (patch)
tree36b3eaf98624547a0703ab18b5183a273327d9cb /test
parentf5db9df45d01a6cc8e47ea938a8a38f960e5d1ef (diff)
downloadserd-ff8ab60025f447dc8ba834be3d9a18e5b45cfb18.tar.gz
serd-ff8ab60025f447dc8ba834be3d9a18e5b45cfb18.tar.bz2
serd-ff8ab60025f447dc8ba834be3d9a18e5b45cfb18.zip
Fix accidentally disabled writer test
Diffstat (limited to 'test')
-rw-r--r--test/test_writer.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/test/test_writer.c b/test/test_writer.c
index baaff736..08191585 100644
--- a/test/test_writer.c
+++ b/test/test_writer.c
@@ -41,6 +41,7 @@ test_write_long_literal(void)
assert(!serd_writer_write_statement(writer, 0, NULL, &s, &p, &o, NULL, NULL));
serd_writer_free(writer);
+ serd_env_free(env);
uint8_t* out = serd_chunk_sink_finish(&chunk);
@@ -55,11 +56,7 @@ test_write_long_literal(void)
int
main(void)
{
- const char* const path = "serd_test.ttl";
-
- test_writer(path);
test_write_long_literal();
- printf("Success\n");
return 0;
}