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/features/groups/milestone_spec.rb')
-rw-r--r--spec/features/groups/milestone_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/groups/milestone_spec.rb b/spec/features/groups/milestone_spec.rb
index 1d9ac5ee1e9..c51ee250331 100644
--- a/spec/features/groups/milestone_spec.rb
+++ b/spec/features/groups/milestone_spec.rb
@@ -54,11 +54,11 @@ RSpec.describe 'Group milestones' do
expect(find('.start_date')).to have_content(Date.today.at_beginning_of_month.strftime('%b %-d, %Y'))
end
- it 'description input does not support autocomplete' do
+ it 'description input support autocomplete' do
description = find('.note-textarea')
description.native.send_keys('!')
- expect(page).not_to have_selector('.atwho-view')
+ expect(page).to have_selector('.atwho-view')
end
end