Skip to content

Commit d1bc8ad

Browse files
committed
Fix tests
1 parent 716acff commit d1bc8ad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libstd/net/addr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,7 @@ mod tests {
12041204
// compare different addresses with the same port
12051205
assert!(v4_1 < v4_3);
12061206
assert!(v6_1 < v6_3);
1207-
assert!(v4_1 > v4_3);
1208-
assert!(v6_1 > v6_3);
1207+
assert!(v4_3 > v4_1);
1208+
assert!(v6_3 > v6_1);
12091209
}
12101210
}

0 commit comments

Comments
 (0)