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/graphql/mutations/issues/set_assignees_spec.rb')
-rw-r--r--spec/graphql/mutations/issues/set_assignees_spec.rb10
1 files changed, 6 insertions, 4 deletions
diff --git a/spec/graphql/mutations/issues/set_assignees_spec.rb b/spec/graphql/mutations/issues/set_assignees_spec.rb
index 4cc49e76bc6..9dc152872a6 100644
--- a/spec/graphql/mutations/issues/set_assignees_spec.rb
+++ b/spec/graphql/mutations/issues/set_assignees_spec.rb
@@ -12,10 +12,12 @@ RSpec.describe Mutations::Issues::SetAssignees do
describe '#resolve' do
subject do
- mutation.resolve(project_path: issue.project.full_path,
- iid: issue.iid,
- operation_mode: Types::MutationOperationModeEnum.default_mode,
- assignee_usernames: [assignee.username])
+ mutation.resolve(
+ project_path: issue.project.full_path,
+ iid: issue.iid,
+ operation_mode: Types::MutationOperationModeEnum.default_mode,
+ assignee_usernames: [assignee.username]
+ )
end
it_behaves_like 'permission level for issue mutation is correctly verified'