We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a75e11 commit cee33eeCopy full SHA for cee33ee
tests/tests.rs
@@ -695,20 +695,6 @@ fn test_default() {
695
assert_eq!(v.len(), 0);
696
}
697
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
707
-fn test_sizes_129_255() {
708
- ArrayVec::from([0u8; 237]);
709
- ArrayVec::from([0u8; 255]);
710
711
712
#[test]
713
fn test_extend_zst() {
714
let mut range = 0..10;
@@ -790,4 +776,4 @@ fn test_arraystring_zero_filled_has_some_sanity_checks() {
790
776
let string = ArrayString::<4>::zero_filled();
791
777
assert_eq!(string.as_str(), "\0\0\0\0");
792
778
assert_eq!(string.len(), 4);
793
779
+}
0 commit comments