Merge pull request #700 from sgmap/fix_tests_for_search

Fix search test that fails randomly
This commit is contained in:
Mathieu Magnin 2017-09-06 16:51:41 +02:00 committed by GitHub
commit e9f9129499

View file

@ -212,8 +212,8 @@ describe Backoffice::DossiersController, type: :controller do
expect(response).to have_http_status(200)
end
it 'returns nothing' do
expect(assigns(:dossiers).count).to eq(0)
it 'does not return the dossier' do
expect(assigns(:dossiers).pluck(:id)).not_to include(dossier2_id)
end
end
end