File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed
lib/graphql/schema_comparator/changes
test/lib/graphql/schema_comparator/diff Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class Criticality
14
14
# these changes.
15
15
DANGEROUS = 2
16
16
17
- # Breaking criticality are changes that immediatly impact
17
+ # Breaking criticality are changes that immediately impact
18
18
# clients usually causing queries not to be valid anymore.
19
19
BREAKING = 3
20
20
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ def test_diff_input_field_type_nullability_change_on_lists_of_the_same_underlyin
100
100
assert_equal "Type for argument `arg` on field `Query.a` changed from `[String]!` to `[String]`" , change . message
101
101
end
102
102
103
- def test_diff_input_field_type_change_within_lists_of_the_same_underyling_types
103
+ def test_diff_input_field_type_change_within_lists_of_the_same_underlying_types
104
104
old_input_field = GraphQL ::Argument . define do
105
105
name "arg"
106
106
type !types [ !types . String ]
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def test_field_type_change_nullability_change_on_lists_of_same_type
97
97
assert_equal "Field `Foo.bar` changed type from `[String]!` to `[String]`" , change . message
98
98
end
99
99
100
- def test_field_type_change_withing_lists_of_the_same_underlying_types
100
+ def test_field_type_change_within_lists_of_the_same_underlying_types
101
101
old_field = GraphQL ::Field . define do
102
102
name "bar"
103
103
type !types [ !types . String ]
@@ -115,7 +115,7 @@ def test_field_type_change_withing_lists_of_the_same_underlying_types
115
115
assert_equal "Field `Foo.bar` changed type from `[String!]!` to `[String]!`" , change . message
116
116
end
117
117
118
- def test_field_type_change_withing_and_on_list_of_same_type
118
+ def test_field_type_change_within_and_on_list_of_same_type
119
119
old_field = GraphQL ::Field . define do
120
120
name "bar"
121
121
type !types [ !types . String ]
@@ -133,7 +133,7 @@ def test_field_type_change_withing_and_on_list_of_same_type
133
133
assert_equal "Field `Foo.bar` changed type from `[String!]!` to `[String]`" , change . message
134
134
end
135
135
136
- def test_field_type_change_withing_and_on_list_of_same_type_of_different_types
136
+ def test_field_type_change_within_and_on_list_of_same_type_of_different_types
137
137
old_field = GraphQL ::Field . define do
138
138
name "bar"
139
139
type !types [ !types . String ]
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ def test_diff_input_field_type_nullability_change_on_lists_of_the_same_underlyin
97
97
assert_equal "Input field `Input.arg` changed type from `[String]!` to `[String]`" , change . message
98
98
end
99
99
100
- def test_diff_input_field_type_change_within_lists_of_the_same_underyling_types
100
+ def test_diff_input_field_type_change_within_lists_of_the_same_underlying_types
101
101
old_input_field = GraphQL ::Argument . define do
102
102
name "arg"
103
103
type !types [ !types . String ]
You can’t perform that action at this time.
0 commit comments