Improved test output for liballoc/str

This commit is contained in:
sntdevco 2019-03-15 16:37:53 +05:30
parent 70d1150478
commit 9445f2bf71

View file

@ -7,7 +7,7 @@ fn test_le() {
assert!("" <= "");
assert!("" <= "foo");
assert!("foo" <= "foo");
assert!("foo" != "bar");
assert_ne!("foo", "bar");
}
#[test]