diff options
author | Douwe Maan <douwe@gitlab.com> | 2015-12-08 23:28:28 +0100 |
---|---|---|
committer | Douwe Maan <douwe@gitlab.com> | 2015-12-08 23:28:28 +0100 |
commit | 23522a9b34c30d61e950820a197b6bd353ba1914 (patch) | |
tree | c2b7ea5d59a1b231af9e01887f3faedaae50f696 | |
parent | 31b4960eca490994bd192f53c4b3f5283fe962d5 (diff) | |
download | gitlab-ce-mr-broken.tar.gz |
Fix specsmr-broken
-rw-r--r-- | spec/features/issues_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/issues_spec.rb b/spec/features/issues_spec.rb index 0af5e6fc1a6..3d6d87e764a 100644 --- a/spec/features/issues_spec.rb +++ b/spec/features/issues_spec.rb @@ -293,10 +293,10 @@ describe 'Issues', feature: true do end def first_issue - page.all('ul.issues-list li').first.text + page.all('ul.issues-list > li').first.text end def last_issue - page.all('ul.issues-list li').last.text + page.all('ul.issues-list > li').last.text end end |