diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/tatl/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tatl/test.c b/tests/tatl/test.c index b02b871..76ff812 100644 --- a/tests/tatl/test.c +++ b/tests/tatl/test.c @@ -38,7 +38,7 @@ TATL_TEST(tatl_context_get_failed_works) { return *tatl_context_get_failed(&context) == 1; } TATL_TEST(tatl_context_get_tag_works) { - return !strcmp(tatl_context_get_tag(&context), "hi"); + return !strcmp(*tatl_context_get_tag(&context), "hi"); } TATL_TEST(tatl_context_get_mute_works) { return *tatl_context_get_mute(&context) == 1; |