@@ -162,7 +162,7 @@ def test_introspect_directive_type
162162 "args" => [ { "name" => "key" } ] ,
163163 "description" => "@stitch description" ,
164164 "isRepeatable" => true ,
165- "locations" => [ : FIELD_DEFINITION] ,
165+ "locations" => [ " FIELD_DEFINITION" ] ,
166166 "name" => "stitch"
167167 }
168168
@@ -171,7 +171,7 @@ def test_introspect_directive_type
171171
172172 def test_introspect_type_access
173173 result = execute_query ( %|{
174- __type(name: "Widget") {
174+ __type(name: "Widget") {
175175 description
176176 kind
177177 name
@@ -279,10 +279,10 @@ def test_introspect_type_possible_types
279279
280280 def test_introspect_type_specified_by_url
281281 result = execute_query ( %|{
282- scalar: __type(name: "String") {
282+ scalar: __type(name: "String") {
283283 specifiedByURL
284284 }
285- non_scalar: __type(name: "Widget") {
285+ non_scalar: __type(name: "Widget") {
286286 specifiedByURL
287287 }
288288 }| )
@@ -303,7 +303,7 @@ def test_introspect_type_specified_by_url
303303
304304 def test_introspect_type_kind_of_type
305305 result = execute_query ( %|{
306- __type(name: "Mutation") {
306+ __type(name: "Mutation") {
307307 name
308308 kind
309309 ofType { name }
@@ -361,7 +361,7 @@ def test_introspect_type_kind_of_type
361361
362362 def test_introspect_enum_value
363363 result = execute_query ( %|{
364- __type(name: "Status") {
364+ __type(name: "Status") {
365365 enumValues(includeDeprecated: true) {
366366 deprecationReason
367367 description
@@ -399,7 +399,7 @@ def test_introspect_enum_value
399399
400400 def test_introspect_field
401401 result = execute_query ( %|{
402- __type(name: "Query") {
402+ __type(name: "Query") {
403403 fields(includeDeprecated: true) {
404404 args { name }
405405 deprecationReason
@@ -452,7 +452,7 @@ def test_introspect_field
452452
453453 def test_introspect_arguments
454454 result = execute_query ( %|{
455- __type(name: "Mutation") {
455+ __type(name: "Mutation") {
456456 fields {
457457 some: args { name }
458458 all: args(includeDeprecated: true) {
@@ -510,7 +510,7 @@ def test_introspect_argument_default_values
510510 | )
511511
512512 result = execute_query ( %|{
513- __type(name: "Query") {
513+ __type(name: "Query") {
514514 fields {
515515 args { defaultValue }
516516 }
0 commit comments