File tree 4 files changed +4
-4
lines changed
groovy/graphql/kickstart/tools
kotlin/graphql/kickstart/tools
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ class SchemaParserSpec extends Specification {
33
33
34
34
def " builder doesn't throw FileNotFound exception when file is present" () {
35
35
when :
36
- SchemaParser . newParser(). file(" test .graphqls" )
36
+ SchemaParser . newParser(). file(" Test .graphqls" )
37
37
.resolvers(new GraphQLQueryResolver () {
38
38
String getId () { " 1" }
39
39
})
@@ -286,7 +286,7 @@ class SchemaParserSpec extends Specification {
286
286
def " parser should include source location for field definition when loaded from single classpath file" () {
287
287
when :
288
288
GraphQLSchema schema = SchemaParser . newParser()
289
- .file(" test .graphqls" )
289
+ .file(" Test .graphqls" )
290
290
.resolvers(new QueryWithIdResolver ())
291
291
.build()
292
292
.makeExecutableSchema()
@@ -298,7 +298,7 @@ class SchemaParserSpec extends Specification {
298
298
sourceLocation != null
299
299
sourceLocation. line == 2
300
300
sourceLocation. column == 5
301
- sourceLocation. sourceName == " test .graphqls"
301
+ sourceLocation. sourceName == " Test .graphqls"
302
302
}
303
303
304
304
def " support enum types if only used as input type" () {
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ class PlaceTest {
9
9
@Test
10
10
fun shouldHandleGenericsDeepHierarchy () {
11
11
val schema = SchemaParser .newParser()
12
- .file(" place .graphqls" )
12
+ .file(" Place .graphqls" )
13
13
.resolvers(PlaceQuery ())
14
14
.build().makeExecutableSchema()
15
15
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments