Skip to content

Commit 2f35fb1

Browse files
committed
Remove redundant tests
1 parent 3b8617b commit 2f35fb1

File tree

2 files changed

+0
-9
lines changed

2 files changed

+0
-9
lines changed

library/core/tests/array.rs

-8
Original file line numberDiff line numberDiff line change
@@ -317,14 +317,6 @@ fn array_map() {
317317
assert_eq!(b, [1, 2, 3]);
318318
}
319319

320-
#[test]
321-
fn array_zip() {
322-
let a = [1, 2, 3];
323-
let b = [4, 5, 6];
324-
let c = a.zip(b);
325-
assert_eq!(c, [(1, 4), (2, 5), (3, 6)]);
326-
}
327-
328320
// See note on above test for why `should_panic` is used.
329321
#[test]
330322
#[should_panic(expected = "test succeeded")]

library/core/tests/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
#![feature(array_from_ref)]
44
#![feature(array_methods)]
55
#![feature(array_map)]
6-
#![feature(array_zip)]
76
#![feature(array_windows)]
87
#![feature(bool_to_option)]
98
#![feature(bound_cloned)]

0 commit comments

Comments
 (0)