test(dijkstra): fix file paths

This commit is contained in:
Paul Alnet 2024-05-17 08:35:48 +02:00
parent f289793c44
commit bbd6fac17f

View file

@ -31,8 +31,9 @@ public class DijkstraAlgorithmTest {
public static void init() {
// Visit these directory to see the list of available files on Commetud.
// When running with VSC, paths are relative to the BE_Graphes directory.
final String mapName = "./Maps/insa.mapgr";
final String pathName = "./Paths/path_fr31insa_rangueil_r2.path";
final String mapName = "../Maps/insa.mapgr";
final String pathName = "../Paths/path_fr31insa_rangueil_r2.path";
System.out.println("Working Directory = " + System.getProperty("user.dir"));
// Create a graph reader.
try {