@@ -123,14 +123,14 @@ var enumTypeTestSchema, _ = graphql.NewSchema(graphql.SchemaConfig{
123123
124124func executeEnumTypeTest (t * testing.T , query string ) * graphql.Result {
125125 result := g (t , graphql.Params {
126- Schema : enumTypeTestSchema ,
126+ Schema : * enumTypeTestSchema ,
127127 RequestString : query ,
128128 })
129129 return result
130130}
131131func executeEnumTypeTestWithParams (t * testing.T , query string , params map [string ]interface {}) * graphql.Result {
132132 result := g (t , graphql.Params {
133- Schema : enumTypeTestSchema ,
133+ Schema : * enumTypeTestSchema ,
134134 RequestString : query ,
135135 VariableValues : params ,
136136 })
@@ -414,7 +414,7 @@ func TestTypeSystem_EnumValues_EnumValueMayBePointer(t *testing.T) {
414414 "color" : "GREEN" ,
415415 "foo" : 1 }}}
416416 result := g (t , graphql.Params {
417- Schema : enumTypeTestSchema ,
417+ Schema : * enumTypeTestSchema ,
418418 RequestString : query ,
419419 })
420420 if ! reflect .DeepEqual (expected , result ) {
@@ -453,7 +453,7 @@ func TestTypeSystem_EnumValues_EnumValueMayBeNilPointer(t *testing.T) {
453453 }},
454454 }
455455 result := g (t , graphql.Params {
456- Schema : enumTypeTestSchema ,
456+ Schema : * enumTypeTestSchema ,
457457 RequestString : query ,
458458 })
459459 if ! reflect .DeepEqual (expected , result ) {
0 commit comments