File tree Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Expand file tree Collapse file tree 2 files changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ a query language for APIs created by Facebook.
13
13
[ ![ Code Style] ( https://img.shields.io/badge/code%20style-black-000000.svg )] ( https://github.com/ambv/black )
14
14
15
15
The current version 1.0.2 of GraphQL-core-next is up-to-date with GraphQL.js version
16
- 14.1.1. All parts of the API are covered by an extensive test suite of currently 1727
16
+ 14.1.1. All parts of the API are covered by an extensive test suite of currently 1726
17
17
unit tests.
18
18
19
19
Original file line number Diff line number Diff line change @@ -111,15 +111,6 @@ def stringifies_simple_types():
111
111
assert str (ListOfNonNullScalarsType ) == "[Scalar!]"
112
112
assert str (GraphQLList (ListOfScalarsType )) == "[[Scalar]]"
113
113
114
- def prohibits_nesting_nonnull_inside_nonnull ():
115
- with raises (TypeError ) as exc_info :
116
- # noinspection PyTypeChecker
117
- GraphQLNonNull (GraphQLNonNull (NonNullScalarType ))
118
- msg = str (exc_info .value )
119
- assert msg == (
120
- "Can only create NonNull of a Nullable GraphQLType but got: Scalar!."
121
- )
122
-
123
114
def allows_a_thunk_for_union_member_types ():
124
115
union = GraphQLUnionType ("ThunkUnion" , lambda : [ObjectType ])
125
116
You can’t perform that action at this time.
0 commit comments