diff --git a/unit_tests/operator/Test_GlobalAveragePoolingImpl.cpp b/unit_tests/operator/Test_GlobalAveragePoolingImpl.cpp index bb45927c4881f45fc29064b5861803158561c888..f494cd9cb8b843bdcda7361503015d4ab7595d1c 100644 --- a/unit_tests/operator/Test_GlobalAveragePoolingImpl.cpp +++ b/unit_tests/operator/Test_GlobalAveragePoolingImpl.cpp @@ -98,6 +98,8 @@ TEST_CASE("[cpu/operator] GlobalAveragePooling", array0[i] = valueDist(gen); result[i] += array0[i] / nb_elements; } + delete[] array0; + delete[] result; REQUIRE_THROWS(globAvgPool->forward()); }