From 032147413996054764f10f2d5b41ce4773411c74 Mon Sep 17 00:00:00 2001 From: Niclas_M <60582586+Niclas-M2@users.noreply.github.com> Date: Wed, 13 Sep 2023 10:08:22 +0200 Subject: [PATCH] Update PersonTest.java --- src/test/java/PersonTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/PersonTest.java b/src/test/java/PersonTest.java index 631705f..489e3d4 100644 --- a/src/test/java/PersonTest.java +++ b/src/test/java/PersonTest.java @@ -8,7 +8,7 @@ void shouldSayHelloCorrectly() { var p = new Person(); p.setName("Max"); String result = p.sayHello(); - Assertions.assertEquals("Hallo, ich bin Max!", result); + Assertions.assertEquals("Hallo, ich bin Max", result); } }