chore(tests): fix he test, updated crate name

This commit is contained in:
Erica Marigold 2023-09-13 18:09:25 +05:30 committed by GitHub
parent 5aaea1a99b
commit 61fb62efd5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,8 @@
extern crate chrono; extern crate chrono;
extern crate chrono_locale; extern crate chrono_lc;
use chrono::{FixedOffset, TimeZone, Timelike}; use chrono::{FixedOffset, TimeZone, Timelike};
use chrono_locale::LocaleDate; use chrono_lc::LocaleDate;
// This test is copied from chrono's, disabling unsupported features // This test is copied from chrono's, disabling unsupported features
#[test] #[test]
@ -96,7 +96,7 @@ fn format_en_naive() {
.with_nanosecond(1_026_490_708) .with_nanosecond(1_026_490_708)
.expect("out of bound"); .expect("out of bound");
let dt = dt.naive_local(); let dt = dt.naive_local();
let locale = "en"; let locale = "he";
// date specifiers // date specifiers
assert_eq!(dt.formatl("%Y", locale).to_string(), "2001"); assert_eq!(dt.formatl("%Y", locale).to_string(), "2001");