Make the tests compile again.

This commit is contained in:
Sebastian Ramacher 2012-08-30 20:07:50 +02:00
parent 108cca154e
commit e960e9cca3

View file

@ -5,8 +5,9 @@
#include "../zathura.h"
START_TEST(test_create) {
zathura_t* zathura = zathura_init(0, NULL);
zathura_t* zathura = zathura_create();
fail_unless(zathura != NULL, "Could not create session", NULL);
fail_unless(zathura_init(zathura) == true, "Could not initialize session", NULL);
zathura_free(zathura);
} END_TEST