Fix a syntax error in test spec for BLI_delaunay_2d_test.

Test specs are read from strings, and there was a comma instead
of a decimal point, and then an extra decimal point in the Quad0 test.
This test has been flaky on Windows buildbot. Perhaps this is why.
This commit is contained in:
Howard Trickey
2020-03-15 17:14:04 -04:00
parent 7a7b392b54
commit cebff2ff30

View File

@@ -489,7 +489,7 @@ TEST(delaunay, Quad0)
int e_diag_out;
const char *spec = R"(4 0 0
0.0 1.0
1,0. 0.0
1.0 0.0
2.0 0.1
2.25 0.5
)";