From ea3d53f48a9257dc27105be54c06f5fba59b4f7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Br=C3=A4nnstr=C3=B6m?= Date: Thu, 12 Oct 2017 15:16:27 +0200 Subject: [PATCH] match expected vs actual test values --- lab1/docs/lab1-instructions.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab1/docs/lab1-instructions.adoc b/lab1/docs/lab1-instructions.adoc index 425ace6..c4aeb27 100644 --- a/lab1/docs/lab1-instructions.adoc +++ b/lab1/docs/lab1-instructions.adoc @@ -152,7 +152,7 @@ Note: Autowire annotation requires that you add `import org.springframework.bean public void testDefaultProductList() { String message = service.sayHello(); assertNotNull(message); - assertEquals(message, "Hello World!"); + assertEquals("Hello World!", message); } ---- +