aboutsummaryrefslogtreecommitdiffstats
path: root/tests/check_set.c
diff options
context:
space:
mode:
authorSven Moritz Hallberg <pesco@khjk.org>2009-03-12 20:33:28 +0100
committerSven Moritz Hallberg <pesco@khjk.org>2009-03-12 20:33:28 +0100
commit673a54c5a78afd1dd41b4cd8811df5ab65042583 (patch)
treebffaa961139ac2be20f0875ef0ed37c87d6b18a9 /tests/check_set.c
parent823de9d44f262ea2364ac8ec6a1e18e0f7dab658 (diff)
parent9e768da723b4a770967efa0d4dcaf58ccef8917f (diff)
pretty blind try at merging in the latest trunk
Diffstat (limited to 'tests/check_set.c')
-rw-r--r--tests/check_set.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/check_set.c b/tests/check_set.c
index b1ea973d..29e3c8c8 100644
--- a/tests/check_set.c
+++ b/tests/check_set.c
@@ -95,13 +95,6 @@ START_TEST(test_setstr)
fail_unless(strcmp(set_getstr(&s, "name"), "bloe") == 0);
END_TEST
-START_TEST(test_setstr_implicit)
- void *data = "data";
- set_t *s = NULL, *t;
- set_setstr(&s, "name", "bloe");
- fail_unless(set_find(&s, "name") != NULL);
-END_TEST
-
START_TEST(test_set_get_int_unknown)
set_t *s = NULL;
fail_unless(set_getint(&s, "foo") == 0);
@@ -125,6 +118,5 @@ Suite *set_suite (void)
tcase_add_test (tc_core, test_set_get_int_unknown);
tcase_add_test (tc_core, test_setint);
tcase_add_test (tc_core, test_setstr);
- tcase_add_test (tc_core, test_setstr_implicit);
return s;
}