diff --git a/test/edu/nps/moves/dis7/AllPduRoundTripTest.java b/test/edu/nps/moves/dis7/AllPduRoundTripTest.java
index 20b81c146bd568dd75a58a9925491361b700f9fb..610734435c0fcf2a5a0317039e18852094079861 100644
--- a/test/edu/nps/moves/dis7/AllPduRoundTripTest.java
+++ b/test/edu/nps/moves/dis7/AllPduRoundTripTest.java
@@ -190,7 +190,7 @@ public class AllPduRoundTripTest
             }
         };
         disnetworking.addListener(lis);
-        System.out.println("Recorder log at " + recorder.getLogFile());
+        System.out.println("Recorder log at " + recorder.getLogFilePath());
     }
 
   /** Will shutdown the common send/receive network interface */
@@ -211,7 +211,7 @@ public class AllPduRoundTripTest
   private void getAllFromRecorder(Semaphore sem) throws Exception
   {
     sem.acquire();
-    Path path = Path.of(recorder.getLogFile()).getParent();
+    Path path = Path.of(recorder.getLogFilePath()).getParent();
     PduPlayer player = new PduPlayer(disnetworking.getMcastGroup(), disnetworking.getDisPort(), path, false);
     player.addRawListener(ba -> {
       if (ba != null) {
diff --git a/test/edu/nps/moves/dis7/X3dInterpolatorsTest.java b/test/edu/nps/moves/dis7/X3dInterpolatorsTest.java
index 9e2515003f35f721fa3a2aa1d60b4ec33b4c948f..90627816663d69faeac520455295de114937dc88 100644
--- a/test/edu/nps/moves/dis7/X3dInterpolatorsTest.java
+++ b/test/edu/nps/moves/dis7/X3dInterpolatorsTest.java
@@ -62,7 +62,7 @@ public class X3dInterpolatorsTest {
         Path path = Path.of("./pduLog");
         
         // Note: the player will playback all log files in the given path
-        PduPlayer player = new PduPlayer(DisThreadedNetIF.DEFAULT_MCAST_GROUP, DisThreadedNetIF.DEFAULT_DIS_PORT, path, true);
+        PduPlayer player = new PduPlayer(DisThreadedNetIF.DEFAULT_MULTICAST_ADDRESS, DisThreadedNetIF.DEFAULT_DIS_PORT, path, true);
         player.addRawListener(ba -> {
             if (ba == null) {
                 player.end();