testsuite: Create timezone without guessing names

Guessing names is not portable, in particular not to Windows.

See also commit 4881ef2.
This commit is contained in:
Benjamin Otte
2024-10-20 04:48:30 +02:00
parent 6ef3fc2dbb
commit 5d01fe96c6

View File

@@ -28,7 +28,7 @@ test_calendar_select_day (void)
cal = gtk_calendar_new ();
tz = g_time_zone_new_identifier ("Europe/Brussels");
tz = g_time_zone_new_offset (2 * 60 * 60);
g_assert_nonnull (tz);
dt = g_date_time_new (tz, 1970, 3, 1, 0, 0, 0);
g_assert_nonnull (dt);