From e98cb1c81a122c8ef1232234c28f61d851d689b3 Mon Sep 17 00:00:00 2001 From: Caio Date: Fri, 13 Aug 2021 20:06:03 -0300 Subject: [PATCH] Typo --- tests/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tests.rs b/tests/tests.rs index 781c849..2f8a5ef 100644 --- a/tests/tests.rs +++ b/tests/tests.rs @@ -786,7 +786,7 @@ fn test_arraystring_const_constructible() { #[test] -fn test_arraystring_has_some_sanity_checks() { +fn test_arraystring_zero_filled_has_some_sanity_checks() { let string = ArrayString::<4>::zero_filled(); assert_eq!(string.as_str(), "\0\0\0\0"); assert_eq!(string.len(), 4);