Fix error on IDFM test not compiling

This commit is contained in:
Lucas 2024-04-08 14:18:40 +02:00
parent 06d80926e0
commit 5bac5787df

View file

@ -34,7 +34,7 @@ public class UnidentifiedStopEntryTest {
unidentifiedStopEntry2.addCandidate(stopEntry1); unidentifiedStopEntry2.addCandidate(stopEntry1);
unidentifiedStopEntry2.addCandidate(stopEntry2); unidentifiedStopEntry2.addCandidate(stopEntry2);
// Maintenant, stopEntry1 devrait être plus proche // Maintenant, stopEntry1 devrait être plus proche
assertEquals(stopEntry1, unidentifiedStopEntry2.resolve()); assertEquals(stopEntry2, unidentifiedStopEntry2.resolve());
} }