Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/support_specs/graphql/arguments_spec.rb')
-rw-r--r--spec/support_specs/graphql/arguments_spec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/spec/support_specs/graphql/arguments_spec.rb b/spec/support_specs/graphql/arguments_spec.rb
index ffb58503a0e..925af1ab79c 100644
--- a/spec/support_specs/graphql/arguments_spec.rb
+++ b/spec/support_specs/graphql/arguments_spec.rb
@@ -52,7 +52,7 @@ RSpec.describe Graphql::Arguments do
float: 2.7,
string: %q[he said "no"],
enum: :OFF,
- null: nil, # we expect this to be omitted - absence is the same as explicit nullness
+ null: nil,
bool_true: true,
bool_false: false,
var: ::Graphql::Var.new('x', 'Int')
@@ -64,6 +64,7 @@ RSpec.describe Graphql::Arguments do
'int: 42, float: 2.7',
%q(string: "he said \\"no\\""),
'enum: OFF',
+ 'null: null',
'boolTrue: true, boolFalse: false',
'var: $x'
].join(', '))