From 50cf9a5070763982556515e64122b1f907ecad6a Mon Sep 17 00:00:00 2001 From: tschiman Date: Wed, 31 May 2017 16:33:27 -0600 Subject: [PATCH] BAEL-755 changing the name of the POKO to a DTO and removing the use of @Autowired in the constructor as it is not needed. --- .../test/kotlin/springbootkotlin/KotlinDemoApplicationTests.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-kotlin/src/test/kotlin/springbootkotlin/KotlinDemoApplicationTests.kt b/spring-boot-kotlin/src/test/kotlin/springbootkotlin/KotlinDemoApplicationTests.kt index 08c9ad0889..15ddc916e2 100644 --- a/spring-boot-kotlin/src/test/kotlin/springbootkotlin/KotlinDemoApplicationTests.kt +++ b/spring-boot-kotlin/src/test/kotlin/springbootkotlin/KotlinDemoApplicationTests.kt @@ -41,7 +41,7 @@ class KotlinDemoApplicationTests { } @Test - fun testHelloPoko() { + fun testHelloDto() { var result = testRestTemplate?.getForEntity("/hello-dto", HelloDto::class.java) Assert.assertNotNull(result)