summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-17 14:23:29 -0600
committerAnnabel Dunstone Gray <annabel.dunstone@gmail.com>2017-02-17 14:23:29 -0600
commitee444bf340616192dc1e0807676bbe58ad1c3905 (patch)
tree80022fd07b28a1f96d6d08f9866ccdcd026422fb
parent0c6b1ad858270c772efc37f7e721a6825493d9ed (diff)
downloadgitlab-ce-global-dropdown-edits.tar.gz
Fix issuables_counter_specglobal-dropdown-edits
-rw-r--r--spec/features/dashboard/issuables_counter_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/features/dashboard/issuables_counter_spec.rb b/spec/features/dashboard/issuables_counter_spec.rb
index 603076d7d37..a1718912fc6 100644
--- a/spec/features/dashboard/issuables_counter_spec.rb
+++ b/spec/features/dashboard/issuables_counter_spec.rb
@@ -35,9 +35,9 @@ describe 'Navigation bar counter', feature: true, js: true, caching: true do
end
def expect_counters(issuable_type, count)
- dashboard_count = find('li.active span.badge')
+ dashboard_count = find('li.active')
find('.global-dropdown-toggle').click
- nav_count = find(".dashboard-shortcuts-#{issuable_type} span.badge")
+ nav_count = find(".dashboard-shortcuts-#{issuable_type}")
expect(nav_count).to have_content(count)
expect(dashboard_count).to have_content(count)