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 {
1111 . description ( " The id of the character. " )
1212 Field ( " name " , at: \. name)
1313 . description ( " The name of the character. " )
14- Field ( " friends " , at: \ . friends )
14+ Field ( " friends " , at: Character . getFriends )
1515 . description (
1616 " The friends of the character, or an empty list if they have none. "
1717 )
@@ -199,7 +199,7 @@ class PartialSchemaTests: XCTestCase {
199199 . description ( " The id of the character. " )
200200 Field ( " name " , at: \. name)
201201 . description ( " The name of the character. " )
202- Field ( " friends " , at: \ . friends )
202+ Field ( " friends " , at: Character . getFriends )
203203 . description (
204204 " The friends of the character, or an empty list if they have none. "
205205 )
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ class SchemaBuilderTests: XCTestCase {
6767 . description ( " The id of the character. " )
6868 Field ( " name " , at: \. name)
6969 . description ( " The name of the character. " )
70- Field ( " friends " , at: \ . friends )
70+ Field ( " friends " , at: Character . getFriends )
7171 . description (
7272 " The friends of the character, or an empty list if they have none. "
7373 )
You can’t perform that action at this time.
0 commit comments