Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hch12907 committed May 24, 2020
1 parent 716acff commit d1bc8ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libstd/net/addr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1204,7 +1204,7 @@ mod tests {
// compare different addresses with the same port
assert!(v4_1 < v4_3);
assert!(v6_1 < v6_3);
assert!(v4_1 > v4_3);
assert!(v6_1 > v6_3);
assert!(v4_3 > v4_1);
assert!(v6_3 > v6_1);
}
}

0 comments on commit d1bc8ad

Please sign in to comment.