From 19d2e618c3779c5dbcc0a619bad9f0e884d5eeb0 Mon Sep 17 00:00:00 2001 From: uap33-2025-d Date: Fri, 26 Sep 2025 11:23:46 +0200 Subject: [PATCH] test livre ok --- 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 45d22d3..aa2b662 100644 --- a/src/test/java/com/mycompany/bibliotheque/LivreTest.java +++ b/src/test/java/com/mycompany/bibliotheque/LivreTest.java @@ -16,7 +16,7 @@ public void testCreationLivre() { assertNotNull(b); assertEquals("1984", b.getTitre()); - assertEquals("George Orwel", b.getAuteur()); // corrigé + assertEquals("George Orwell", b.getAuteur()); // corrigé assertEquals("1234567890123", b.getIsbn()); assertFalse(b.isEmprunte()); // si la méthode existe }