From df7e21cebeb7032b3d2a74bb3b8d17449bce7fee Mon Sep 17 00:00:00 2001 From: "delphine.thevenot" Date: Wed, 24 Sep 2025 11:16:55 +0200 Subject: [PATCH] =?UTF-8?q?m=C3=A0j=20pour=20version=20initialeV2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/java/com/mycompany/bibliotheque/LivreTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()); } }