COMPMID-378 CLMinMaxLocation testing completed.

Change-Id: I3d35544fab22ab2aa99d9250db3df2f88af8196c
Reviewed-on: http://mpd-gerrit.cambridge.arm.com/77670
Tested-by: Kaizen <jeremy.johnson+kaizengerrit@arm.com>
Reviewed-by: Steven Niu <steven.niu@arm.com>
diff --git a/tests/validation/TensorOperations.h b/tests/validation/TensorOperations.h
index b8e5a66..4d067ac 100644
--- a/tests/validation/TensorOperations.h
+++ b/tests/validation/TensorOperations.h
@@ -333,7 +333,7 @@
 
 // Min max location
 template <typename T1>
-void min_max_location(const Tensor<T1> &in, int32_t &min, int32_t &max, Coordinates2DArray &min_loc, Coordinates2DArray &max_loc, uint32_t &min_count, uint32_t &max_count)
+void min_max_location(const Tensor<T1> &in, int32_t &min, int32_t &max, IArray<Coordinates2D> &min_loc, IArray<Coordinates2D> &max_loc, uint32_t &min_count, uint32_t &max_count)
 {
     // Set min and max to first pixel
     min       = in[0];