Skip to content

Commit

Permalink
fix miri test
Browse files Browse the repository at this point in the history
  • Loading branch information
estebank committed Jan 18, 2025
1 parent a791362 commit 570e144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tools/miri/tests/pass/binops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ fn test_class() {

assert_eq!(q, r);
r.y = 17;
assert!((r.y != q.y));
assert!(r.y != q.y);
assert_eq!(r.y, 17);
assert!((q != r));
assert!(q != r);
}

pub fn main() {
Expand Down

0 comments on commit 570e144

Please sign in to comment.