File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class PartialSchemaTests: XCTestCase {
11
11
. description ( " The id of the character. " )
12
12
Field ( " name " , at: \. name)
13
13
. description ( " The name of the character. " )
14
- Field ( " friends " , at: \ . friends )
14
+ Field ( " friends " , at: Character . getFriends )
15
15
. description (
16
16
" The friends of the character, or an empty list if they have none. "
17
17
)
@@ -199,7 +199,7 @@ class PartialSchemaTests: XCTestCase {
199
199
. description ( " The id of the character. " )
200
200
Field ( " name " , at: \. name)
201
201
. description ( " The name of the character. " )
202
- Field ( " friends " , at: \ . friends )
202
+ Field ( " friends " , at: Character . getFriends )
203
203
. description (
204
204
" The friends of the character, or an empty list if they have none. "
205
205
)
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class SchemaBuilderTests: XCTestCase {
67
67
. description ( " The id of the character. " )
68
68
Field ( " name " , at: \. name)
69
69
. description ( " The name of the character. " )
70
- Field ( " friends " , at: \ . friends )
70
+ Field ( " friends " , at: Character . getFriends )
71
71
. description (
72
72
" The friends of the character, or an empty list if they have none. "
73
73
)
You can’t perform that action at this time.
0 commit comments