@@ -560,71 +560,71 @@ mod tests {
560
560
// in this test the Decimal is on the right
561
561
fn uint128_decimal_multiply ( ) {
562
562
// a*b
563
- let left = Uint128 ( 300 ) ;
563
+ let left = Uint128 :: new ( 300 ) ;
564
564
let right = Decimal :: one ( ) + Decimal :: percent ( 50 ) ; // 1.5
565
- assert_eq ! ( left * right, Uint128 ( 450 ) ) ;
565
+ assert_eq ! ( left * right, Uint128 :: new ( 450 ) ) ;
566
566
567
567
// a*0
568
- let left = Uint128 ( 300 ) ;
568
+ let left = Uint128 :: new ( 300 ) ;
569
569
let right = Decimal :: zero ( ) ;
570
- assert_eq ! ( left * right, Uint128 ( 0 ) ) ;
570
+ assert_eq ! ( left * right, Uint128 :: new ( 0 ) ) ;
571
571
572
572
// 0*a
573
- let left = Uint128 ( 0 ) ;
573
+ let left = Uint128 :: new ( 0 ) ;
574
574
let right = Decimal :: one ( ) + Decimal :: percent ( 50 ) ; // 1.5
575
- assert_eq ! ( left * right, Uint128 ( 0 ) ) ;
575
+ assert_eq ! ( left * right, Uint128 :: new ( 0 ) ) ;
576
576
}
577
577
578
578
#[ test]
579
579
// in this test the Decimal is on the left
580
580
fn decimal_uint128_multiply ( ) {
581
581
// a*b
582
582
let left = Decimal :: one ( ) + Decimal :: percent ( 50 ) ; // 1.5
583
- let right = Uint128 ( 300 ) ;
584
- assert_eq ! ( left * right, Uint128 ( 450 ) ) ;
583
+ let right = Uint128 :: new ( 300 ) ;
584
+ assert_eq ! ( left * right, Uint128 :: new ( 450 ) ) ;
585
585
586
586
// 0*a
587
587
let left = Decimal :: zero ( ) ;
588
- let right = Uint128 ( 300 ) ;
589
- assert_eq ! ( left * right, Uint128 ( 0 ) ) ;
588
+ let right = Uint128 :: new ( 300 ) ;
589
+ assert_eq ! ( left * right, Uint128 :: new ( 0 ) ) ;
590
590
591
591
// a*0
592
592
let left = Decimal :: one ( ) + Decimal :: percent ( 50 ) ; // 1.5
593
- let right = Uint128 ( 0 ) ;
594
- assert_eq ! ( left * right, Uint128 ( 0 ) ) ;
593
+ let right = Uint128 :: new ( 0 ) ;
594
+ assert_eq ! ( left * right, Uint128 :: new ( 0 ) ) ;
595
595
}
596
596
597
597
#[ test]
598
598
fn decimal_uint128_division ( ) {
599
599
// a/b
600
600
let left = Decimal :: percent ( 150 ) ; // 1.5
601
- let right = Uint128 ( 3 ) ;
601
+ let right = Uint128 :: new ( 3 ) ;
602
602
assert_eq ! ( left / right, Decimal :: percent( 50 ) ) ;
603
603
604
604
// 0/a
605
605
let left = Decimal :: zero ( ) ;
606
- let right = Uint128 ( 300 ) ;
606
+ let right = Uint128 :: new ( 300 ) ;
607
607
assert_eq ! ( left / right, Decimal :: zero( ) ) ;
608
608
}
609
609
610
610
#[ test]
611
611
#[ should_panic( expected = "attempt to divide by zero" ) ]
612
612
fn decimal_uint128_divide_by_zero ( ) {
613
613
let left = Decimal :: percent ( 150 ) ; // 1.5
614
- let right = Uint128 ( 0 ) ;
614
+ let right = Uint128 :: new ( 0 ) ;
615
615
let _result = left / right;
616
616
}
617
617
618
618
#[ test]
619
619
fn decimal_uint128_div_assign ( ) {
620
620
// a/b
621
621
let mut dec = Decimal :: percent ( 150 ) ; // 1.5
622
- dec /= Uint128 ( 3 ) ;
622
+ dec /= Uint128 :: new ( 3 ) ;
623
623
assert_eq ! ( dec, Decimal :: percent( 50 ) ) ;
624
624
625
625
// 0/a
626
626
let mut dec = Decimal :: zero ( ) ;
627
- dec /= Uint128 ( 300 ) ;
627
+ dec /= Uint128 :: new ( 300 ) ;
628
628
assert_eq ! ( dec, Decimal :: zero( ) ) ;
629
629
}
630
630
@@ -633,7 +633,7 @@ mod tests {
633
633
fn decimal_uint128_div_assign_by_zero ( ) {
634
634
// a/0
635
635
let mut dec = Decimal :: percent ( 50 ) ;
636
- dec /= Uint128 ( 0 ) ;
636
+ dec /= Uint128 :: new ( 0 ) ;
637
637
}
638
638
639
639
#[ test]
0 commit comments