Merge "Add documentation to the Neuralnetworks HIDL HAL." into oc-mr1-dev
diff --git a/neuralnetworks/1.0/vts/functional/GeneratedTestHarness.cpp b/neuralnetworks/1.0/vts/functional/GeneratedTestHarness.cpp
index 2f557f8..9c85c8c 100644
--- a/neuralnetworks/1.0/vts/functional/GeneratedTestHarness.cpp
+++ b/neuralnetworks/1.0/vts/functional/GeneratedTestHarness.cpp
@@ -172,7 +172,7 @@
             auto& test_float = test_float_operands[index];
             for (unsigned int i = 0; i < golden_float.size(); i++) {
                 SCOPED_TRACE(i);
-                EXPECT_FLOAT_EQ(golden_float[i], test_float[i]);
+                EXPECT_NEAR(golden_float[i], test_float[i], 1.e-5);
             }
         });