aboutsummaryrefslogtreecommitdiff
path: root/tests/validation/Validation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/validation/Validation.cpp')
-rw-r--r--tests/validation/Validation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/validation/Validation.cpp b/tests/validation/Validation.cpp
index 690c4eac9e..1a082111a9 100644
--- a/tests/validation/Validation.cpp
+++ b/tests/validation/Validation.cpp
@@ -130,7 +130,7 @@ void check_border_element(const IAccessor &tensor, const Coordinates &id,
const double target = get_double_data(ptr + channel_offset, tensor.data_type());
const double reference = get_double_data(static_cast<const uint8_t *>(border_value) + channel_offset, tensor.data_type());
- if(!compare<AbsoluteTolerance<double>, double>(target, reference))
+ if(!compare<AbsoluteTolerance<double>>(target, reference))
{
ARM_COMPUTE_TEST_INFO("id = " << id);
ARM_COMPUTE_TEST_INFO("channel = " << channel);
@@ -192,7 +192,7 @@ void validate(const IAccessor &tensor, const void *reference_value)
const double target = get_double_data(ptr + channel_offset, tensor.data_type());
const double reference = get_double_data(reference_value, tensor.data_type());
- if(!compare<AbsoluteTolerance<double>, double>(target, reference))
+ if(!compare<AbsoluteTolerance<double>>(target, reference))
{
ARM_COMPUTE_TEST_INFO("id = " << id);
ARM_COMPUTE_TEST_INFO("channel = " << channel);