Skip to content

v0.2.53..v0.2.54 changeset BuildingWayNodeCriterionTest.cpp

Garret Voltz edited this page Mar 31, 2020 · 1 revision
diff --git a/hoot-core-test/src/test/cpp/hoot/core/criterion/BuildingWayNodeCriterionTest.cpp b/hoot-core-test/src/test/cpp/hoot/core/criterion/BuildingWayNodeCriterionTest.cpp
index 96804b5..3e12b82 100644
--- a/hoot-core-test/src/test/cpp/hoot/core/criterion/BuildingWayNodeCriterionTest.cpp
+++ b/hoot-core-test/src/test/cpp/hoot/core/criterion/BuildingWayNodeCriterionTest.cpp
@@ -22,7 +22,7 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2015, 2016, 2018, 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2015, 2016, 2018, 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 
 // Hoot
@@ -41,9 +41,8 @@ class BuildingWayNodeCriterionTest : public HootTestFixture
 
 public:
 
-  BuildingWayNodeCriterionTest()
-    : HootTestFixture("test-files/criterion/",
-                      UNUSED_PATH)
+  BuildingWayNodeCriterionTest() :
+  HootTestFixture("test-files/criterion/", UNUSED_PATH)
   {
   }
 
@@ -59,9 +58,9 @@ public:
     HOOT_STR_EQUALS(1, uut.isSatisfied(map->getNode(-20421)));
     HOOT_STR_EQUALS(1, uut.isSatisfied(map->getNode(-74242)));
 
-    HOOT_STR_EQUALS(1, uut.isSatisfied(map->getNode(-271160)));
+    HOOT_STR_EQUALS(0, uut.isSatisfied(map->getNode(-271160)));
     HOOT_STR_EQUALS(0, uut.isSatisfied(map->getNode(-271159)));
-    HOOT_STR_EQUALS(1, uut.isSatisfied(map->getNode(-271173)));
+    HOOT_STR_EQUALS(0, uut.isSatisfied(map->getNode(-271173)));
 
     HOOT_STR_EQUALS(1, uut.isSatisfied(map->getNode(-271161)));
 
Clone this wiki locally