From f8586d00517c94e128aff8d0f081f5cca646a23e Mon Sep 17 00:00:00 2001 From: Colin Davidson Date: Wed, 20 Nov 2024 15:33:20 -0800 Subject: [PATCH] oops, copy-paste-bug --- tests/core/time/test_core_time.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core/time/test_core_time.odin b/tests/core/time/test_core_time.odin index b72f57387..cd2b19fb8 100644 --- a/tests/core/time/test_core_time.odin +++ b/tests/core/time/test_core_time.odin @@ -581,7 +581,7 @@ test_check_timezone_edgecases :: proc(t: ^testing.T) { defer tz.region_destroy(tog_tz) ret_dt = tz.datetime_to_tz(utc_dt, tog_tz) - expected_tog_dt, _ := dt.components_to_datetime(2024, 10, 4, 9, 47, 0) + expected_tog_dt, _ := dt.components_to_datetime(2024, 10, 4, 13, 47, 0) testing.expectf(t, datetime_eq(ret_dt, expected_tog_dt), "Failed to convert to Togatapu time") }