From ba0607fa73b57e3d3e8a2201654332c96102fd25 Mon Sep 17 00:00:00 2001 From: Robert Bastian Date: Wed, 4 Sep 2024 15:18:15 +0200 Subject: [PATCH] update changed values --- components/datetime/src/format/neo.rs | 4 ++-- tutorials/rust/buffer/src/main.rs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/datetime/src/format/neo.rs b/components/datetime/src/format/neo.rs index 8803d0f03bc..d9b7dc74f06 100644 --- a/components/datetime/src/format/neo.rs +++ b/components/datetime/src/format/neo.rs @@ -2661,7 +2661,7 @@ mod tests { pattern: "", field_symbol: fields::Weekday::Format, field_length: FieldLength::Wide, - expected: "<пʼятницю>", + expected: "<пʼятниця>", }, TestCase { pattern: "", @@ -2686,7 +2686,7 @@ mod tests { pattern: "", field_symbol: fields::Weekday::Format, field_length: FieldLength::Wide, - expected: "<пʼятницю>", + expected: "<пʼятниця>", }, TestCase { pattern: "", diff --git a/tutorials/rust/buffer/src/main.rs b/tutorials/rust/buffer/src/main.rs index 92ccd403dea..740e1280e8f 100644 --- a/tutorials/rust/buffer/src/main.rs +++ b/tutorials/rust/buffer/src/main.rs @@ -37,6 +37,6 @@ fn main() { let result = formatter.format_to_string(&datetime); - assert_eq!(result, "၂၀၂၂၊ ဒီ ၂၃ ၁၂:၅၄:၂၉"); + assert_eq!(result, "၂၀၂၂ ဒီ ၂၃ ၁၂:၅၄:၂၉"); println!("{result}"); }