aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/fixtures/ColorConvertFixture.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/fixtures/ColorConvertFixture.h')
-rw-r--r--tests/validation/fixtures/ColorConvertFixture.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/validation/fixtures/ColorConvertFixture.h b/tests/validation/fixtures/ColorConvertFixture.h
index 52a9de87b0..cbaff6dfce 100644
--- a/tests/validation/fixtures/ColorConvertFixture.h
+++ b/tests/validation/fixtures/ColorConvertFixture.h
@@ -129,8 +129,8 @@ protected:
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 @@ protected:
{
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
{