mirror of
https://github.com/GSA/notifications-api.git
synced 2026-02-03 09:51:11 -05:00
Don’t pass notify_db or notify_db_session to test
They get set up by the `sample_scheduled_job` fixture.
This commit is contained in:
@@ -247,15 +247,11 @@ def test_get_scheduled_jobs_gets_ignores_jobs_not_scheduled(notify_db, notify_db
|
|||||||
assert jobs[0].id == job_scheduled.id
|
assert jobs[0].id == job_scheduled.id
|
||||||
|
|
||||||
|
|
||||||
def test_get_scheduled_jobs_gets_ignores_jobs_scheduled_in_the_future(
|
def test_get_scheduled_jobs_gets_ignores_jobs_scheduled_in_the_future(sample_scheduled_job):
|
||||||
notify_db, notify_db_session, sample_scheduled_job
|
|
||||||
):
|
|
||||||
jobs = dao_get_scheduled_jobs()
|
jobs = dao_get_scheduled_jobs()
|
||||||
assert len(jobs) == 0
|
assert len(jobs) == 0
|
||||||
|
|
||||||
|
|
||||||
def test_get_future_scheduled_job_gets_a_job_yet_to_send(
|
def test_get_future_scheduled_job_gets_a_job_yet_to_send(sample_scheduled_job):
|
||||||
notify_db, notify_db_session, sample_scheduled_job
|
|
||||||
):
|
|
||||||
result = dao_get_future_scheduled_job_by_id_and_service_id(sample_scheduled_job.id, sample_scheduled_job.service_id)
|
result = dao_get_future_scheduled_job_by_id_and_service_id(sample_scheduled_job.id, sample_scheduled_job.service_id)
|
||||||
assert result.id == sample_scheduled_job.id
|
assert result.id == sample_scheduled_job.id
|
||||||
|
|||||||
Reference in New Issue
Block a user