You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
976 B
29 lines
976 B
7 years ago
|
From 2c52141dcf9c1bc2445dde5265036abca7e5c2c7 Mon Sep 17 00:00:00 2001
|
||
|
From: Thomas Hindoe Paaboel Andersen <phomes@gmail.com>
|
||
|
Date: Tue, 19 May 2015 06:33:54 +0200
|
||
|
Subject: [PATCH] test-hashmap: fix an assert
|
||
|
|
||
|
CID#1299016
|
||
|
|
||
|
(cherry picked from commit b669934fae49c9158c35e612e54e1765edca8584)
|
||
|
|
||
|
Cherry-picked from: b669934
|
||
|
Resolves: #1222517
|
||
|
---
|
||
|
src/test/test-hashmap-plain.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/src/test/test-hashmap-plain.c b/src/test/test-hashmap-plain.c
|
||
|
index 84b508f87..c1a5ccf1f 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);
|