summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@gitlab.com>2015-12-08 23:28:28 +0100
committerDouwe Maan <douwe@gitlab.com>2015-12-08 23:28:28 +0100
commit23522a9b34c30d61e950820a197b6bd353ba1914 (patch)
treec2b7ea5d59a1b231af9e01887f3faedaae50f696
parent31b4960eca490994bd192f53c4b3f5283fe962d5 (diff)
downloadgitlab-ce-mr-broken.tar.gz
Fix specsmr-broken
-rw-r--r--spec/features/issues_spec.rb4
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