Skip to content

Commit d3c15bd

Browse files
committed
Remove unnecessary tests
1 parent 52babfa commit d3c15bd

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/lib.rs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,3 @@ mod string;
2828
pub use array::FixedArray;
2929
pub use length::ValidLength;
3030
pub use string::FixedString;
31-
32-
#[cfg(test)]
33-
mod test {
34-
use std::mem::size_of;
35-
36-
use crate::FixedString;
37-
38-
#[test]
39-
fn niche_test() {
40-
assert_eq!(size_of::<FixedString>(), size_of::<Option<FixedString>>());
41-
}
42-
}

src/string.rs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ enum FixedStringRepr<LenT: ValidLength> {
1212
Inline(InlineString<LenT::InlineStrRepr>),
1313
}
1414

15-
#[test]
16-
fn test() {}
17-
1815
/// A fixed size String with length provided at creation denoted in [`ValidLength`], by default [`u32`].
1916
///
2017
/// See module level documentation for more information.

0 commit comments

Comments
 (0)