libcore: Fix test issues
This commit is contained in:
parent
9518fc79ea
commit
27576af73e
1 changed files with 4 additions and 4 deletions
|
@ -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]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue