From d0aaf9c47f9c561dae81e5c50e3ce1ce32a62ab3 Mon Sep 17 00:00:00 2001 From: Chad Stearns Date: Mon, 16 Nov 2020 03:07:10 -0500 Subject: [PATCH] Use ROC_STR_MEM_SIZE in more tests --- compiler/gen/tests/gen_str.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/gen/tests/gen_str.rs b/compiler/gen/tests/gen_str.rs index a07751096b..56c522478b 100644 --- a/compiler/gen/tests/gen_str.rs +++ b/compiler/gen/tests/gen_str.rs @@ -212,7 +212,7 @@ mod gen_str { "# ), &[small_str("1"), small_str("2"), small_str("")], - &'static [[u8; 16]] + &'static [[u8; ROC_STR_MEM_SIZE]] ); } @@ -227,7 +227,7 @@ mod gen_str { "# ), &[small_str("3"), small_str("4"), small_str("")], - &'static [[u8; 16]] + &'static [[u8; ROC_STR_MEM_SIZE]] ); }