Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2020-03-16 00:14:04 +0300
committerHoward Trickey <howard.trickey@gmail.com>2020-03-16 00:14:04 +0300
commitcebff2ff30f56beb2173d4502a9b89e1167ed4fc (patch)
tree61519c1cf1fc2de3553740593e3f6a8f2cbabfda /tests/gtests
parent7a7b392b5422eeb5030f9b8c5504edc085f49892 (diff)
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.
Diffstat (limited to 'tests/gtests')
-rw-r--r--tests/gtests/blenlib/BLI_delaunay_2d_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_delaunay_2d_test.cc b/tests/gtests/blenlib/BLI_delaunay_2d_test.cc
index 40b607fa807..79e47211049 100644
--- a/tests/gtests/blenlib/BLI_delaunay_2d_test.cc
+++ b/tests/gtests/blenlib/BLI_delaunay_2d_test.cc
@@ -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
)";