1
Fork 0

libcore: Fix test issues

This commit is contained in:
Patrick Walton 2012-08-30 10:42:48 -07:00
parent 9518fc79ea
commit 27576af73e

View file

@ -2231,10 +2231,10 @@ mod tests {
#[test] #[test]
fn test_le() { fn test_le() {
assert (le(&~"", &~"")); assert (le(&"", &""));
assert (le(&~"", &~"foo")); assert (le(&"", &"foo"));
assert (le(&~"foo", &~"foo")); assert (le(&"foo", &"foo"));
assert (!eq(&~"foo", &~"bar")); assert (!eq(&"foo", &"bar"));
} }
#[test] #[test]