test: Fix StopEntryTest
This commit is contained in:
parent
fdca89a869
commit
201d3cc54c
1 changed files with 3 additions and 3 deletions
|
@ -5,11 +5,11 @@ import static org.junit.jupiter.api.Assertions.*;
|
||||||
public class StopEntryTest {
|
public class StopEntryTest {
|
||||||
|
|
||||||
//Test de toString
|
//Test de toString
|
||||||
@Test
|
@Test
|
||||||
public void testToString() {
|
public void testToString() {
|
||||||
StopEntry stop = new StopEntry("Chatelet", 2.3467, 48.8534);
|
StopEntry stop = new StopEntry("Chatelet", 2.3467, 48.8534);
|
||||||
// Mise à jour de la valeur attendue pour correspondre au formatage réel
|
// Mise à jour de la valeur attendue pour correspondre au formatage réel
|
||||||
String expected = "Chatelet [2.347, 48.853]";
|
String expected = "Chatelet [2,347, 48,853]";
|
||||||
assertEquals(expected, stop.toString());
|
assertEquals(expected, stop.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue