Skip to content

Commit

Permalink
Fix nightly datetime tests (#5946)
Browse files Browse the repository at this point in the history
  • Loading branch information
sffc authored Dec 24, 2024
1 parent 9a60869 commit e801813
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/datetime/src/fieldsets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1284,7 +1284,7 @@ impl_zone_marker!(
///
/// let formatter = FixedCalendarDateTimeFormatter::try_new(
/// locale!("en-US").into(),
/// T::medium().with_zone_specific_short(),
/// T::medium().with_zone_specific(),
/// )
/// .unwrap();
///
Expand Down Expand Up @@ -1467,7 +1467,7 @@ impl_zone_marker!(
///
/// let formatter = TimeFormatter::try_new(
/// locale!("en-US").into(),
/// V::medium(),
/// V::new(),
/// )
/// .unwrap();
///
Expand Down Expand Up @@ -1502,11 +1502,11 @@ impl_zone_marker!(
/// use icu::locale::locale;
/// use writeable::assert_writeable_eq;
///
/// let time_zone_basic = TimeZoneBcp47Id(tinystr!(8, "uschi")).with_offset("-06".parse().ok());1
/// let time_zone_basic = TimeZoneBcp47Id(tinystr!(8, "uschi")).with_offset("-06".parse().ok());
///
/// let formatter = FixedCalendarDateTimeFormatter::try_new(
/// locale!("en-US").into(),
/// Vs::medium(),
/// Vs::new(),
/// )
/// .unwrap();
///
Expand Down Expand Up @@ -1544,7 +1544,7 @@ impl_zone_marker!(
///
/// let formatter = FixedCalendarDateTimeFormatter::try_new(
/// locale!("en-US").into(),
/// L::medium(),
/// L::new(),
/// )
/// .unwrap();
///
Expand Down

0 comments on commit e801813

Please sign in to comment.