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:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-07-14 15:10:12 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-14 15:10:12 +0300
commit14a0edee5c04b04b5281f99ce7f6ba75b919dba1 (patch)
tree98484def7f8c4ad9c371664e40ddfef523340fad /spec/services
parent7a7f602c2689ef1d204976b23a8e89bdf927e8e2 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/services')
-rw-r--r--spec/services/quick_actions/interpret_service_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/services/quick_actions/interpret_service_spec.rb b/spec/services/quick_actions/interpret_service_spec.rb
index 5d1bfdc7892..06ccb9fe42e 100644
--- a/spec/services/quick_actions/interpret_service_spec.rb
+++ b/spec/services/quick_actions/interpret_service_spec.rb
@@ -2872,13 +2872,13 @@ RSpec.describe QuickActions::InterpretService, feature_category: :team_planning
let_it_be(:project) { create(:project, :private) }
let_it_be(:work_item) { create(:work_item, :task, project: project) }
- let(:command) { '/type Issue' }
+ let(:command) { '/type issue' }
it 'has command available' do
_, explanations = service.explain(command, work_item)
expect(explanations)
- .to contain_exactly("Converts work item to Issue. Widgets not supported in new type are removed.")
+ .to contain_exactly("Converts work item to issue. Widgets not supported in new type are removed.")
end
end