diff --git a/tests/array/test_str8_array.cc b/tests/array/test_str8_array.cc index bc0c14a..c17d3b9 100644 --- a/tests/array/test_str8_array.cc +++ b/tests/array/test_str8_array.cc @@ -19,11 +19,11 @@ TestFuncResult test_str8_array(void) { u64 index = 0; b8 running = true; while (running) { - item = wapp_array_get(Str8, &array, index); - result = result && item && (wapp_str8_equal(item, &expected[index])); + item = wapp_array_get(Str8, &array, index); + result = result && item && (wapp_str8_equal(item, &expected[index])); - ++index; - running = index < count; + ++index; + running = index < count; } return wapp_tester_result(result);