mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-28 16:36:14 +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;
|
int i;
|
||||||
|
|
||||||
seq = g_sequence_new (NULL);
|
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++)
|
for (i = 0; i < 1000; i++)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user