Applied ROC_STR_MEM_SIZE to more tests

This commit is contained in:
Chad Stearns 2020-11-15 23:22:13 -05:00
parent d3da25131c
commit 7b488d0970

View file

@ -107,7 +107,7 @@ mod gen_str {
"# "#
), ),
small_str("JJJ"), small_str("JJJ"),
[u8; 16] [u8; ROC_STR_MEM_SIZE]
); );
} }
@ -143,7 +143,7 @@ mod gen_str {
"# "#
), ),
&[small_str("J"), small_str("J"), small_str("J")], &[small_str("J"), small_str("J"), small_str("J")],
&'static [[u8; 16]] &'static [[u8; ROC_STR_MEM_SIZE]]
); );
} }