arm_compute v17.06
diff --git a/examples/neon_convolution.cpp b/examples/neon_convolution.cpp
index fc68aa2..222c8f9 100644
--- a/examples/neon_convolution.cpp
+++ b/examples/neon_convolution.cpp
@@ -24,10 +24,10 @@
 #include "arm_compute/runtime/NEON/NEFunctions.h"
 
 #include "arm_compute/core/Types.h"
-#include "test_helpers/Utils.h"
+#include "utils/Utils.h"
 
 using namespace arm_compute;
-using namespace test_helpers;
+using namespace utils;
 
 /** Gaussian 3x3 matrix
  */
@@ -113,5 +113,5 @@
  */
 int main(int argc, const char **argv)
 {
-    return test_helpers::run_example(argc, argv, main_neon_convolution);
+    return utils::run_example(argc, argv, main_neon_convolution);
 }