diff options
author | Alice Frosi <afrosi@redhat.com> | 2023-02-16 14:06:37 +0100 |
---|---|---|
committer | Alice Frosi <afrosi@redhat.com> | 2023-02-16 14:06:37 +0100 |
commit | 9e1bf7183af59307c2321b731c5b9f725e94eae1 (patch) | |
tree | ace8fc5b8434462db7d119d3718248c48bcf2613 | |
parent | d927db72f76f851164d51fc2444a4e5886d5e87f (diff) | |
download | seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar.gz seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar.bz2 seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar.lz seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar.xz seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.tar.zst seitan-9e1bf7183af59307c2321b731c5b9f725e94eae1.zip |
tests: fix the suite with the wrong test
-rw-r--r-- | tests/unit/test_actions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/test_actions.c b/tests/unit/test_actions.c index 962a74c..a2de8b7 100644 --- a/tests/unit/test_actions.c +++ b/tests/unit/test_actions.c @@ -295,7 +295,7 @@ Suite *action_call_suite(void) tcase_add_checked_fixture(ret, setup_without_fd, teardown); tcase_set_timeout(ret, timeout); tcase_add_test(ret, test_act_return); - suite_add_tcase(s, cont); + suite_add_tcase(s, ret); block = tcase_create("a_block"); tcase_add_checked_fixture(block, setup_without_fd, teardown); |