Commit 101e9bd4 authored by Andrey Kamaev's avatar Andrey Kamaev Committed by OpenCV Buildbot

Merge pull request #304 from apavlenko:test_java_fix_double

parents 7341eaa6 a8c0f1d9
...@@ -77,7 +77,8 @@ public class TermCriteriaTest extends OpenCVTestCase { ...@@ -77,7 +77,8 @@ public class TermCriteriaTest extends OpenCVTestCase {
public void testToString() { public void testToString() {
String actual = tc2.toString(); String actual = tc2.toString();
String expected = "{ type: 2, maxCount: 4, epsilon: " + EPS + "}"; double eps = EPS;
String expected = "{ type: 2, maxCount: 4, epsilon: " + eps + "}";
assertEquals(expected, actual); assertEquals(expected, actual);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment