diff --git a/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java b/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
index 42c8b297e00a392a379e72d310440622c2ee38ee..a5e64033c7e435f5c8be869a22ff36bb914cbe72 100644
--- a/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
+++ b/src/test/java/org/orekit/rugged/core/AbstractAlgorithmTest.java
@@ -85,7 +85,8 @@ public abstract class AbstractAlgorithmTest {
         // test direct localization
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
@@ -110,7 +111,8 @@ public abstract class AbstractAlgorithmTest {
         // test direct localization
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
@@ -144,7 +146,8 @@ public abstract class AbstractAlgorithmTest {
 
         Vector3D      position = state.getPVCoordinates(earth.getBodyFrame()).getPosition();
         Vector3D      los      = groundP.subtract(position);
-        GeodeticPoint result   = algorithm.intersection(earth, position, los);
+        GeodeticPoint result   = algorithm.refineIntersection(earth, position, los,
+                                                              algorithm.intersection(earth, position, los));
         checkIntersection(position, los, result);
         Assert.assertEquals(0.0, groundP.distance(earth.transform(result)), 2.0e-9);
 
diff --git a/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java b/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
index c7946d178a81bee6ed06b9d3fcd64a8265daa1b4..30ad08c2537bc8d2f8a391863c2be397cc08c0fd 100644
--- a/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
+++ b/src/test/java/org/orekit/rugged/core/duvenhage/DuvenhageAlgorithmTest.java
@@ -38,7 +38,8 @@ public class DuvenhageAlgorithmTest extends AbstractAlgorithmTest {
         final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
         Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
         Vector3D los = new Vector3D( 0.5127552821932051, -0.8254313129088879, -0.2361041470463311);
-        GeodeticPoint intersection = algorithm.intersection(earth, position, los);
+        GeodeticPoint intersection = algorithm.refineIntersection(earth, position, los,
+                                                                  algorithm.intersection(earth, position, los));
         checkIntersection(position, los, intersection);
     }
 
@@ -48,7 +49,8 @@ public class DuvenhageAlgorithmTest extends AbstractAlgorithmTest {
         final IntersectionAlgorithm algorithm = createAlgorithm(updater, 8);
         Vector3D position = new Vector3D(-3787079.6453602533, 5856784.405679551, 1655869.0582939098);
         Vector3D los = new Vector3D( 0.42804005978915904, -0.8670291034054828, -0.2550338037664377);
-        GeodeticPoint intersection = algorithm.intersection(earth, position, los);
+        GeodeticPoint intersection = algorithm.refineIntersection(earth, position, los,
+                                                                  algorithm.intersection(earth, position, los));
         checkIntersection(position, los, intersection);
     }