[glib/wip/smcv/2452-g-string-0-length-replace: 1/5] test_string_replace: Make types agree
- From: Simon McVittie <smcv src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib/wip/smcv/2452-g-string-0-length-replace: 1/5] test_string_replace: Make types agree
- Date: Mon, 2 Aug 2021 11:02:22 +0000 (UTC)
commit 24b652d3ca9818ab97907e9f2f68513632cd4693
Author: Simon McVittie <smcv collabora com>
Date: Mon Aug 2 11:22:17 2021 +0100
test_string_replace: Make types agree
g_string_replace() returns guint, not gint.
Signed-off-by: Simon McVittie <smcv collabora com>
glib/tests/string.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
---
diff --git a/glib/tests/string.c b/glib/tests/string.c
index 6e22cd287..b222d6194 100644
--- a/glib/tests/string.c
+++ b/glib/tests/string.c
@@ -499,27 +499,27 @@ static void
test_string_replace (void)
{
GString *s;
- gint n;
+ guint n;
s = g_string_new ("foo bar foo baz foo bar foobarbaz");
n = g_string_replace (s, "bar", "baz", 0);
g_assert_cmpstr ("foo baz foo baz foo baz foobazbaz", ==, s->str);
- g_assert_cmpint (n, ==, 3);
+ g_assert_cmpuint (n, ==, 3);
n = g_string_replace (s, "baz", "bar", 3);
g_assert_cmpstr ("foo bar foo bar foo bar foobazbaz", ==, s->str);
- g_assert_cmpint (n, ==, 3);
+ g_assert_cmpuint (n, ==, 3);
n = g_string_replace (s, "foobar", "bar", 1);
g_assert_cmpstr ("foo bar foo bar foo bar foobazbaz", ==, s->str);
- g_assert_cmpint (n, ==, 0);
+ g_assert_cmpuint (n, ==, 0);
s = g_string_assign (s, "aaaaaaaa");
n = g_string_replace (s, "a", "abcdefghijkl", 0);
g_assert_cmpstr
("abcdefghijklabcdefghijklabcdefghijklabcdefghijklabcdefghijklabcdefghijklabcdefghijklabcdefghijkl",
==, s->str);
- g_assert_cmpint (n, ==, 8);
+ g_assert_cmpuint (n, ==, 8);
g_string_free (s, TRUE);
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]