Skip to content

Commit

Permalink
Fix unused import in coretests on wasm32
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorn3 committed Feb 26, 2025
1 parent b491494 commit 169e731
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions library/coretests/tests/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ use core::num::NonZero;
use core::ops::{Range, RangeInclusive};
use core::slice;

use rand::seq::IndexedRandom;

#[test]
fn test_position() {
let b = [1, 2, 3, 5, 5];
Expand Down Expand Up @@ -1810,6 +1808,7 @@ fn select_nth_unstable() {
use core::cmp::Ordering::{Equal, Greater, Less};

use rand::Rng;
use rand::seq::IndexedRandom;

let mut rng = crate::test_rng();

Expand Down

0 comments on commit 169e731

Please sign in to comment.