Skip to content

Commit

Permalink
Fix loom tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Kmeakin committed Sep 9, 2023
1 parent 3a017d4 commit 17e21db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/loom.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ mod loom {
"Loom tests are typically slow in debug mode. Run them with `--release`"
);

use ecow::eco_vec;
use ecow::arc_vec;

#[test]
fn smoke() {
loom::model(|| {
let mut one = eco_vec![1, 2, 3];
let mut one = arc_vec![1, 2, 3];
let two = one.clone();

loom::thread::spawn(move || {
Expand Down

0 comments on commit 17e21db

Please sign in to comment.