@@ -28,7 +28,7 @@ class StarWarsQueryTests : XCTestCase {
2828 )
2929
3030 let result = try graphql (
31- schema: StarWarsSchema ,
31+ schema: starWarsSchema ,
3232 request: query,
3333 eventLoopGroup: eventLoopGroup
3434 ) . wait ( )
@@ -70,7 +70,7 @@ class StarWarsQueryTests : XCTestCase {
7070 )
7171
7272 let result = try graphql (
73- schema: StarWarsSchema ,
73+ schema: starWarsSchema ,
7474 request: query,
7575 eventLoopGroup: eventLoopGroup
7676 ) . wait ( )
@@ -139,7 +139,7 @@ class StarWarsQueryTests : XCTestCase {
139139 ]
140140 )
141141
142- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
142+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
143143 XCTAssertEqual ( result, expected)
144144 }
145145
@@ -163,7 +163,7 @@ class StarWarsQueryTests : XCTestCase {
163163 ]
164164 )
165165
166- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
166+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
167167 XCTAssertEqual ( result, expected)
168168 }
169169
@@ -194,7 +194,7 @@ class StarWarsQueryTests : XCTestCase {
194194 ]
195195 )
196196
197- result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
197+ result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
198198 XCTAssertEqual ( result, expected)
199199
200200 // or we can pass "EMPIRE" and expect Luke
@@ -210,7 +210,7 @@ class StarWarsQueryTests : XCTestCase {
210210 ]
211211 )
212212
213- result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
213+ result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
214214 XCTAssertEqual ( result, expected)
215215 }
216216
@@ -242,7 +242,7 @@ class StarWarsQueryTests : XCTestCase {
242242 ]
243243 )
244244
245- result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
245+ result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
246246 XCTAssertEqual ( result, expected)
247247
248248 params = [
@@ -257,7 +257,7 @@ class StarWarsQueryTests : XCTestCase {
257257 ]
258258 )
259259
260- result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
260+ result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
261261 XCTAssertEqual ( result, expected)
262262
263263
@@ -271,7 +271,7 @@ class StarWarsQueryTests : XCTestCase {
271271 ]
272272 )
273273
274- result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
274+ result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup, variableValues: params) . wait ( )
275275 XCTAssertEqual ( result, expected)
276276 }
277277
@@ -295,7 +295,7 @@ class StarWarsQueryTests : XCTestCase {
295295 ]
296296 )
297297
298- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
298+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
299299 XCTAssertEqual ( result, expected)
300300 }
301301
@@ -325,7 +325,7 @@ class StarWarsQueryTests : XCTestCase {
325325 ]
326326 )
327327
328- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
328+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
329329 XCTAssertEqual ( result, expected)
330330 }
331331
@@ -359,7 +359,7 @@ class StarWarsQueryTests : XCTestCase {
359359 ]
360360 )
361361
362- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
362+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
363363 XCTAssertEqual ( result, expected)
364364 }
365365
@@ -395,7 +395,7 @@ class StarWarsQueryTests : XCTestCase {
395395 ]
396396 )
397397
398- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
398+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
399399 XCTAssertEqual ( result, expected)
400400 }
401401
@@ -422,7 +422,7 @@ class StarWarsQueryTests : XCTestCase {
422422 )
423423
424424 let result = try graphql (
425- schema: StarWarsSchema ,
425+ schema: starWarsSchema ,
426426 request: query,
427427 eventLoopGroup: eventLoopGroup
428428 ) . wait ( )
@@ -452,7 +452,7 @@ class StarWarsQueryTests : XCTestCase {
452452 ]
453453 )
454454
455- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
455+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
456456 XCTAssertEqual ( result, expected)
457457 }
458458
@@ -485,7 +485,7 @@ class StarWarsQueryTests : XCTestCase {
485485 ]
486486 )
487487
488- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
488+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
489489 XCTAssertEqual ( result, expected)
490490 }
491491
@@ -544,7 +544,7 @@ class StarWarsQueryTests : XCTestCase {
544544 ]
545545 )
546546
547- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
547+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
548548 XCTAssertEqual ( result, expected)
549549 }
550550
@@ -577,7 +577,7 @@ class StarWarsQueryTests : XCTestCase {
577577 ]
578578 )
579579
580- let result = try graphql ( schema: StarWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
580+ let result = try graphql ( schema: starWarsSchema , request: query, eventLoopGroup: eventLoopGroup) . wait ( )
581581 XCTAssertEqual ( result, expected)
582582 }
583583
0 commit comments