Skip to content

Commit 035f54f

Browse files
committed
DO NOT MERGE - Checking MPMC tests run by CI
It's not clear to me whether the MPMC tests run during CI. So this commit breaks one of the tests...
1 parent 2da29db commit 035f54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/std/tests/sync/mpmc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub fn stress_factor() -> usize {
1313
fn smoke() {
1414
let (tx, rx) = channel::<i32>();
1515
tx.send(1).unwrap();
16-
assert_eq!(rx.recv().unwrap(), 1);
16+
assert_eq!(rx.recv().unwrap(), 2);
1717
}
1818

1919
#[test]

0 commit comments

Comments
 (0)