summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples
diff options
context:
space:
mode:
authorVictor Wu <victor@gitlab.com>2019-04-17 17:17:59 +0000
committerAnnabel Dunstone Gray <annabel.m.gray@gmail.com>2019-04-17 17:17:59 +0000
commitf4089e1e02b970d49b4c717e0a1d73ce823a3309 (patch)
tree9ee80c185d6260b53a4ac33416efc3dea295f1d3 /spec/support/shared_examples
parent4700552745f2a875d7079ce9ba1a2606a6ffd899 (diff)
downloadgitlab-ce-f4089e1e02b970d49b4c717e0a1d73ce823a3309.tar.gz
Replace `No due date` with `None`
Diffstat (limited to 'spec/support/shared_examples')
-rw-r--r--spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb b/spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb
index dd1676a08e2..657c2a60d24 100644
--- a/spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb
+++ b/spec/support/shared_examples/quick_actions/issue/remove_due_date_quick_action_shared_examples.rb
@@ -11,7 +11,7 @@ shared_examples 'remove_due_date quick action' do
visit project_issue_path(project, issue)
page.within '.due_date' do
- expect(page).to have_content 'No due date'
+ expect(page).to have_content 'None'
end
end
end