Skip to content

v0.2.52..v0.2.53 changeset ChangesetReplacementCreatorTest.cpp

Garret Voltz edited this page Feb 12, 2020 · 1 revision
diff --git a/hoot-core-test/src/test/cpp/hoot/core/algorithms/changeset/ChangesetReplacementCreatorTest.cpp b/hoot-core-test/src/test/cpp/hoot/core/algorithms/changeset/ChangesetReplacementCreatorTest.cpp
index 074cf10..b19d29c 100644
--- a/hoot-core-test/src/test/cpp/hoot/core/algorithms/changeset/ChangesetReplacementCreatorTest.cpp
+++ b/hoot-core-test/src/test/cpp/hoot/core/algorithms/changeset/ChangesetReplacementCreatorTest.cpp
@@ -22,14 +22,14 @@
  * This will properly maintain the copyright information. DigitalGlobe
  * copyrights will be updated automatically.
  *
- * @copyright Copyright (C) 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ * @copyright Copyright (C) 2019, 2020 DigitalGlobe (http://www.digitalglobe.com/)
  */
 
 // Hoot
 #include <hoot/core/TestUtils.h>
 #include <hoot/core/algorithms/changeset/ChangesetReplacementCreator.h>
 #include <hoot/core/util/Log.h>
-#include <hoot/core/ops/MergeNearbyNodes.h>
+#include <hoot/core/ops/DuplicateNodeRemover.h>
 #include <hoot/core/criterion/TagCriterion.h>
 #include <hoot/core/util/GeometryUtils.h>
 
@@ -202,7 +202,7 @@ public:
     // the convert ops added here can contain any op
     conf().set(
       ConfigOptions::getConvertOpsKey(),
-      QStringList(QString::fromStdString(MergeNearbyNodes::className())));
+      QStringList(QString::fromStdString(DuplicateNodeRemover::className())));
     try
     {
       changesetCreator.create("test1.osm", "test2.osm", geos::geom::Envelope(), "out.osm");
Clone this wiki locally