mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
sequence: fix style issue in previous commit
Use g_assert_true() rather than integer comparison in sequence unit test.
This commit is contained in:
parent
8fccf8e4e3
commit
01baf39685
@ -1363,7 +1363,7 @@ test_empty (void)
|
||||
int i;
|
||||
|
||||
seq = g_sequence_new (NULL);
|
||||
g_assert_cmpint (TRUE, ==, g_sequence_is_empty (seq));
|
||||
g_assert_true (g_sequence_is_empty (seq));
|
||||
|
||||
for (i = 0; i < 1000; i++)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user