summaryrefslogtreecommitdiff
path: root/identifiers.c
diff options
context:
space:
mode:
Diffstat (limited to 'identifiers.c')
-rw-r--r--identifiers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/identifiers.c b/identifiers.c
index cb4de6f..17bbd47 100644
--- a/identifiers.c
+++ b/identifiers.c
@@ -201,11 +201,11 @@ static void idents_test(void) {
allocr_create(&a);
idents_create(&ids, &a, NULL);
Identifier i1 = ident_insert(&ids, &s);
- assert(strs_equal(s, " bar"));
+ assert(streq(s, " bar"));
char b2[] = "foo_variable+6";
s = b2;
Identifier i2 = ident_insert(&ids, &s);
- assert(strs_equal(s, "+6"));
+ assert(streq(s, "+6"));
assert(i1 == i2);
allocr_free_all(&a);