From f10cc11bfd4c547b36e169e2118e897114408a27 Mon Sep 17 00:00:00 2001 From: Sebastian Ramacher Date: Sun, 8 Apr 2012 18:03:21 +0200 Subject: [PATCH] Update tests. --- tests/test_document.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_document.c b/tests/test_document.c index f5dfd52..4cfbcc7 100644 --- a/tests/test_document.c +++ b/tests/test_document.c @@ -5,9 +5,9 @@ #include "../document.h" START_TEST(test_open) { - fail_unless(zathura_document_open(NULL, NULL, NULL) == NULL, "Could create document", NULL); - fail_unless(zathura_document_open(NULL, "fl", NULL) == NULL, "Could create document", NULL); - fail_unless(zathura_document_open(NULL, "fl", "pw") == NULL, "Could create document", NULL); + fail_unless(zathura_document_open(NULL, NULL, NULL, NULL) == NULL, "Could create document", NULL); + fail_unless(zathura_document_open(NULL, "fl", NULL, NULL) == NULL, "Could create document", NULL); + fail_unless(zathura_document_open(NULL, "fl", "pw", NULL) == NULL, "Could create document", NULL); } END_TEST Suite* suite_document()