From ee444bf340616192dc1e0807676bbe58ad1c3905 Mon Sep 17 00:00:00 2001 From: Annabel Dunstone Gray Date: Fri, 17 Feb 2017 14:23:29 -0600 Subject: Fix issuables_counter_spec --- spec/features/dashboard/issuables_counter_spec.rb | 4 ++-- 1 file 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) -- cgit v1.2.1