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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLev Dragunov <l.dragunov@corp.mail.ru>2015-02-10 13:58:13 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:37:25 +0300
commit04b7fc51e669a6244ce72d90a0231f353b70a993 (patch)
treea1dc336338f54567b5317dc925235f8398490f3c /geometry/geometry_tests/region_test.cpp
parenta59fbb74e5e00c0bcf5e9b8b3fa0748037726c66 (diff)
Code review fixes
Diffstat (limited to 'geometry/geometry_tests/region_test.cpp')
-rw-r--r--geometry/geometry_tests/region_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/geometry/geometry_tests/region_test.cpp b/geometry/geometry_tests/region_test.cpp
index d35570a92f..944dc60903 100644
--- a/geometry/geometry_tests/region_test.cpp
+++ b/geometry/geometry_tests/region_test.cpp
@@ -206,8 +206,8 @@ UNIT_TEST(Region_point_at_border_test)
P p4(5.0, 1.0);
P p5(5.0, 1.01);
- TEST(!region.atBorder(p1, 0.01), ("Point lies outside border"));
- TEST(!region.atBorder(p2, 0.01), ("Point lies inside but not at border"));
+ TEST(!region.atBorder(p1, 0.01), ("Point lies outside the border"));
+ TEST(!region.atBorder(p2, 0.01), ("Point lies strictly inside the border"));
TEST(region.atBorder(p3, 0.01), ("Point has same point with border"));
TEST(region.atBorder(p4, 0.01), ("Point lies at border"));
TEST(region.atBorder(p5, 0.01), ("Point lies at delta interval near border"));