COMPMID-761: Add CL/NEON ColorConvert benchmark tests

Change-Id: I25b42c5b74567bb50444da393d723b7f5cedafad
Reviewed-on: https://eu-gerrit-1.euhpc.arm.com/138694
Tested-by: Jenkins <bsgcomp@arm.com>
Reviewed-by: Anthony Barbier <anthony.barbier@arm.com>
diff --git a/tests/validation/fixtures/ColorConvertFixture.h b/tests/validation/fixtures/ColorConvertFixture.h
index 52a9de8..cbaff6d 100644
--- a/tests/validation/fixtures/ColorConvertFixture.h
+++ b/tests/validation/fixtures/ColorConvertFixture.h
@@ -129,8 +129,8 @@
 
             if(1U == _dst_num_planes)
             {
-                TensorType *dst_plane = static_cast<TensorType *>(ref_dst.plane(0));
-                color_convert.configure(plane_src, dst_plane);
+                TensorType *plane_dst = static_cast<TensorType *>(ref_dst.plane(0));
+                color_convert.configure(plane_src, plane_dst);
             }
             else
             {
@@ -141,8 +141,8 @@
         {
             if(1U == _dst_num_planes)
             {
-                TensorType *dst_plane = static_cast<TensorType *>(ref_dst.plane(0));
-                color_convert.configure(&ref_src, dst_plane);
+                TensorType *plane_dst = static_cast<TensorType *>(ref_dst.plane(0));
+                color_convert.configure(&ref_src, plane_dst);
             }
             else
             {