Fix deprecated min/max values

A tiny noop fix
encoder
Yuri Astrakhan 3 years ago committed by Thomas Tanon
parent 3d6af19288
commit 47d1f9a293
  1. 2
      lib/oxrdf/src/interning.rs
  2. 24
      lib/src/xsd/decimal.rs
  3. 4
      lib/src/xsd/duration.rs

@ -422,5 +422,5 @@ fn next_spur(value: Spur) -> Spur {
} }
fn impossible_spur() -> Spur { fn impossible_spur() -> Spur {
Spur::try_from_usize((u32::max_value() - 10).try_into().unwrap()).unwrap() Spur::try_from_usize((u32::MAX - 10).try_into().unwrap()).unwrap()
} }

@ -665,12 +665,12 @@ mod tests {
Decimal::from(-2) Decimal::from(-2)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::min_value()).round(), Decimal::from(i64::MIN).round(),
Decimal::from(i64::min_value()) Decimal::from(i64::MIN)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::max_value()).round(), Decimal::from(i64::MAX).round(),
Decimal::from(i64::max_value()) Decimal::from(i64::MAX)
); );
} }
@ -684,12 +684,12 @@ mod tests {
Decimal::from(-10) Decimal::from(-10)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::min_value()).ceil(), Decimal::from(i64::MIN).ceil(),
Decimal::from(i64::min_value()) Decimal::from(i64::MIN)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::max_value()).ceil(), Decimal::from(i64::MAX).ceil(),
Decimal::from(i64::max_value()) Decimal::from(i64::MAX)
); );
} }
@ -706,12 +706,12 @@ mod tests {
Decimal::from(-11) Decimal::from(-11)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::min_value()).floor(), Decimal::from(i64::MIN).floor(),
Decimal::from(i64::min_value()) Decimal::from(i64::MIN)
); );
assert_eq!( assert_eq!(
Decimal::from(i64::max_value()).floor(), Decimal::from(i64::MAX).floor(),
Decimal::from(i64::max_value()) Decimal::from(i64::MAX)
); );
} }
} }

@ -564,10 +564,10 @@ mod tests {
#[test] #[test]
fn from_str() { fn from_str() {
let min = Duration::new( let min = Duration::new(
i64::min_value() + 1, i64::MIN + 1,
Decimal::min_value().checked_add(Decimal::step()).unwrap(), Decimal::min_value().checked_add(Decimal::step()).unwrap(),
); );
let max = Duration::new(i64::max_value(), Decimal::max_value()); let max = Duration::new(i64::MAX, Decimal::max_value());
assert_eq!( assert_eq!(
YearMonthDuration::from_str("P1Y").unwrap().to_string(), YearMonthDuration::from_str("P1Y").unwrap().to_string(),

Loading…
Cancel
Save