From: Thomas Hindoe Paaboel Andersen Date: Tue, 19 May 2015 04:33:54 +0000 (+0200) Subject: test-hashmap: fix an assert X-Git-Tag: v220~62 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b669934fae49c9158c35e612e54e1765edca8584;p=thirdparty%2Fsystemd.git test-hashmap: fix an assert CID#1299016 --- diff --git a/src/test/test-hashmap-plain.c b/src/test/test-hashmap-plain.c index 84b508f874e..c1a5ccf1f5a 100644 --- a/src/test/test-hashmap-plain.c +++ b/src/test/test-hashmap-plain.c @@ -682,7 +682,7 @@ static void test_hashmap_get2(void) { r = hashmap_get2(m, key_orig, &key_copy); assert_se(streq(r, val)); assert_se(key_orig != key_copy); - assert_se(streq(key_orig, key_orig)); + assert_se(streq(key_orig, key_copy)); r = hashmap_get2(m, "no such key", NULL); assert_se(r == NULL);