andreachild commented on code in PR #3121:
URL: https://github.com/apache/tinkerpop/pull/3121#discussion_r2109667622


##########
gremlin-test/src/main/java/org/apache/tinkerpop/gremlin/features/StepDefinition.java:
##########
@@ -723,7 +723,7 @@ private static <T> List<org.hamcrest.Matcher<? super T>> 
getMatchers(final T[] i
                 matchers.add((org.hamcrest.Matcher<? super T>) new 
IsPathEqualToMatcher((Path) item));
             } else if (item instanceof Double && Double.isFinite((Double) 
item)) {
                // Allow for minor rounding errors with Double
-               matchers.add((org.hamcrest.Matcher<? super T>) closeTo((Double) 
item, 0.000000000000001));
+               matchers.add((org.hamcrest.Matcher<? super T>) closeTo((Double) 
item, 1e+30));

Review Comment:
   Why was this change needed, and did you mean to change it to `1e-30` since 
`1e+30` is a very large number?
   



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to