diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2018-04-04 15:42:00 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-04-04 15:42:00 +0000 |
commit | 8512feea040424d9f980352afc194dee90972433 (patch) | |
tree | 18f56f7f1e0d313c31ab9c8f6fc801047e3bb699 | |
parent | a3e827558a4c808e82540dff1c7908a8a9f0ad51 (diff) | |
parent | bc19656c189a07bd678fe6fdbb42708508518893 (diff) | |
download | gitlab-ce-8512feea040424d9f980352afc194dee90972433.tar.gz |
Merge branch '44983-transient-failure-in-user_sorts_issues_spec' into 'master'
Resolve "Transient failure in spec/features/projects/issues/user_sorts_issues_spec.rb"
Closes #44983
See merge request gitlab-org/gitlab-ce!18174
-rw-r--r-- | spec/features/projects/issues/user_sorts_issues_spec.rb | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/spec/features/projects/issues/user_sorts_issues_spec.rb b/spec/features/projects/issues/user_sorts_issues_spec.rb index 34148ae0116..c3d63000dac 100644 --- a/spec/features/projects/issues/user_sorts_issues_spec.rb +++ b/spec/features/projects/issues/user_sorts_issues_spec.rb @@ -25,17 +25,14 @@ describe "User sorts issues" do page.within(".issues-list") do page.within("li.issue:nth-child(1)") do expect(page).to have_content(issue1.title) - expect(page).to have_content("2 1") end page.within("li.issue:nth-child(2)") do expect(page).to have_content(issue2.title) - expect(page).to have_content("1 2") end page.within("li.issue:nth-child(3)") do expect(page).to have_content(issue3.title) - expect(page).not_to have_content("0 0") end end end |