Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1ccdc905 authored by Charisee's avatar Charisee Committed by Charisee Chiw
Browse files

Changes for the Rust 1.59.0 update

bug: 215232614
Test: TreeHugger and compiling with m rust
Change-Id: I005a1ee1325401130814cc2e50518a237072ca60
parent beeff2d3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -924,9 +924,9 @@ mod tests {
            BinderFeatures::default(),
        );

        assert!(!(service1 < service1));
        assert!(!(service1 > service1));
        assert_eq!(service1 < service2, !(service2 < service1));
        assert!((service1 >= service1));
        assert!((service1 <= service1));
        assert_eq!(service1 < service2, (service2 >= service1));
    }

    #[test]