Skip to content

Commit cee33ee

Browse files
committed
Remove disabled and now-redundant tests
1 parent 3a75e11 commit cee33ee

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

tests/tests.rs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -695,20 +695,6 @@ fn test_default() {
695695
assert_eq!(v.len(), 0);
696696
}
697697

698-
#[cfg(feature="array-sizes-33-128")]
699-
#[test]
700-
fn test_sizes_33_128() {
701-
ArrayVec::from([0u8; 52]);
702-
ArrayVec::from([0u8; 127]);
703-
}
704-
705-
#[cfg(feature="array-sizes-129-255")]
706-
#[test]
707-
fn test_sizes_129_255() {
708-
ArrayVec::from([0u8; 237]);
709-
ArrayVec::from([0u8; 255]);
710-
}
711-
712698
#[test]
713699
fn test_extend_zst() {
714700
let mut range = 0..10;
@@ -790,4 +776,4 @@ fn test_arraystring_zero_filled_has_some_sanity_checks() {
790776
let string = ArrayString::<4>::zero_filled();
791777
assert_eq!(string.as_str(), "\0\0\0\0");
792778
assert_eq!(string.len(), 4);
793-
}
779+
}

0 commit comments

Comments
 (0)