diff --git a/src/test/java/com/mycompany/bibliotheque/LivreTest.java b/src/test/java/com/mycompany/bibliotheque/LivreTest.java index 38e063d..822d52d 100644 --- a/src/test/java/com/mycompany/bibliotheque/LivreTest.java +++ b/src/test/java/com/mycompany/bibliotheque/LivreTest.java @@ -13,7 +13,7 @@ public class LivreTest { public void testCreationLivre() { Livre b = new Livre("1984", "George Orwell", "1234567890123",false); assertEquals("1984", b.getTitre()); - assertEquals("George Orwell", b.getAuteur()); + assertEquals("George Orwel", b.getAuteur()); assertEquals("1234567890123", b.getIsbn()); } }