ci: avoid another date-dependent failure

Set the day before setting the month to avoid
failure when running the test on the 31st day of a month
This commit is contained in:
Jeremy Bícha 2024-07-30 15:50:12 -04:00
parent a02d4ba2a1
commit 20b00d3947

View File

@ -580,8 +580,8 @@ G_GNUC_END_IGNORE_DEPRECATIONS
/* avoid day 30 and 31, since they don't exist in February */
instance = g_object_new (type,
"year", 1984,
"month", 10,
"day", 05,
"month", 10,
NULL);
}
/* special casing for singletons */