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/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb b/spec/support/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb
index 13d2447754c..eb58cb97a75 100644
--- a/spec/support/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb
+++ b/spec/support/shared_examples/graphql/mutations/boards_list_create_shared_examples.rb
@@ -10,7 +10,7 @@ RSpec.shared_examples 'board lists create mutation' do
let(:mutation) { described_class.new(object: nil, context: { current_user: user }, field: nil) }
let(:list_create_params) { {} }
- subject { mutation.resolve(board_id: board.to_global_id.to_s, **list_create_params) }
+ subject { mutation.resolve(board_id: board.to_global_id, **list_create_params) }
describe '#ready?' do
it 'raises an error if required arguments are missing' do