From 96589fa5ebe2b8d0f6c7c79e581ed2da6c464135 Mon Sep 17 00:00:00 2001 From: Erica Marigold Date: Wed, 13 Sep 2023 22:47:09 +0530 Subject: [PATCH] fix(tests): `format_tr_naive` use proper locale --- tests/tr.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tr.rs b/tests/tr.rs index eed4b9c..fdf40b3 100644 --- a/tests/tr.rs +++ b/tests/tr.rs @@ -93,7 +93,7 @@ fn format_tr_naive() { .with_nanosecond(1_026_490_708) .expect("out of bound"); let dt = dt.naive_local(); - let locale = "en"; + let locale = "tr"; // date specifiers assert_eq!(dt.formatl("%Y", locale).to_string(), "2001");