From 89e79c61aaf3d2e9df4a58c719d454f62ae5606c Mon Sep 17 00:00:00 2001 From: inflab-int Date: Sun, 12 Nov 2023 21:44:14 +0900 Subject: [PATCH] test(query-model): rename test method --- .../com/linecorp/kotlinjdsl/querymodel/jpql/path/PathsTest.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/query-model/jpql/src/test/kotlin/com/linecorp/kotlinjdsl/querymodel/jpql/path/PathsTest.kt b/query-model/jpql/src/test/kotlin/com/linecorp/kotlinjdsl/querymodel/jpql/path/PathsTest.kt index 311041819..62a8bfeed 100644 --- a/query-model/jpql/src/test/kotlin/com/linecorp/kotlinjdsl/querymodel/jpql/path/PathsTest.kt +++ b/query-model/jpql/src/test/kotlin/com/linecorp/kotlinjdsl/querymodel/jpql/path/PathsTest.kt @@ -18,7 +18,7 @@ class PathsTest : WithAssertions { private val path2 = Paths.treat(Paths.path(EmployeeDepartment::employee), FullTimeEmployee::class) @Test - fun `path with a property`() { + fun `path() with a property`() { // when val actual = Paths.path( FullTimeEmployee::address, @@ -34,7 +34,7 @@ class PathsTest : WithAssertions { } @Test - fun `path with a getter`() { + fun `path() with a getter`() { // when val actual = Paths.path( FullTimeEmployee::getDisplayName,