Skip to content

Commit 7a01528

Browse files
committed
chore: fix codestyle
1 parent 2cb35b5 commit 7a01528

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

graphql-kotlin-toolkit-codegen/src/test/kotlin/com/auritylab/graphql/kotlin/toolkit/codegen/_test/AbstractCompilationTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ abstract class AbstractCompilationTest(
2929

3030
// Configure the compilation and run the compiler.
3131
val result = KotlinCompilation().apply {
32-
/// Add the generated sources to the compilation.
32+
// / Add the generated sources to the compilation.
3333
sources = listOf(mainSource, *dependencySources.toTypedArray())
3434
inheritClassPath = true
3535
}.compile()

graphql-kotlin-toolkit-codegen/src/test/kotlin/com/auritylab/graphql/kotlin/toolkit/codegen/generator/fieldResolver/FieldResolverGeneratorTest.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,6 @@ import graphql.schema.GraphQLFieldDefinition
88
import graphql.schema.GraphQLFieldsContainer
99
import graphql.schema.GraphQLNonNull
1010
import graphql.schema.GraphQLObjectType
11-
import org.junit.jupiter.api.Assertions
12-
import org.junit.jupiter.api.BeforeAll
13-
import org.junit.jupiter.api.DisplayName
14-
import org.junit.jupiter.api.Nested
15-
import org.junit.jupiter.api.Test
16-
import org.junit.jupiter.api.TestInstance
1711
import kotlin.reflect.KClass
1812
import kotlin.reflect.KFunction
1913
import kotlin.reflect.KProperty1
@@ -23,6 +17,12 @@ import kotlin.reflect.full.createType
2317
import kotlin.reflect.full.memberFunctions
2418
import kotlin.reflect.full.memberProperties
2519
import kotlin.reflect.full.starProjectedType
20+
import org.junit.jupiter.api.Assertions
21+
import org.junit.jupiter.api.BeforeAll
22+
import org.junit.jupiter.api.DisplayName
23+
import org.junit.jupiter.api.Nested
24+
import org.junit.jupiter.api.Test
25+
import org.junit.jupiter.api.TestInstance
2626

2727
@TestInstance(TestInstance.Lifecycle.PER_CLASS)
2828
internal class FieldResolverGeneratorTest : AbstractCompilationTest(true) {

0 commit comments

Comments
 (0)