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
committed by Mat
parent 325cb8071f
commit 4d93e39522

View File

@@ -571,8 +571,8 @@ test_type (gconstpointer data)
/* 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 */