Commit 644246da authored by Clement Ho's avatar Clement Ho

Fix pagination spec, forgot to add space

parent 660b3450
...@@ -45,7 +45,7 @@ describe "Admin::AbuseReports", :js do ...@@ -45,7 +45,7 @@ describe "Admin::AbuseReports", :js do
visit admin_abuse_reports_path visit admin_abuse_reports_path
expect(page).to have_selector('.pagination') expect(page).to have_selector('.pagination')
expect(page).to have_selector('.pagination.js-pagination-page', count: (report_count.to_f / AbuseReport.default_per_page).ceil) expect(page).to have_selector('.pagination .js-pagination-page', count: (report_count.to_f / AbuseReport.default_per_page).ceil)
end end
end end
end end
......
...@@ -246,7 +246,7 @@ feature 'Dashboard Todos' do ...@@ -246,7 +246,7 @@ feature 'Dashboard Todos' do
it 'is has the right number of pages' do it 'is has the right number of pages' do
visit dashboard_todos_path visit dashboard_todos_path
expect(page).to have_selector('.gl-pagination.js-pagination-page', count: 2) expect(page).to have_selector('.gl-pagination .js-pagination-page', count: 2)
end end
describe 'mark all as done', :js do describe 'mark all as done', :js do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment