Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-kelp committed Feb 4, 2024
1 parent ab16956 commit fe1aa2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OpenOversight/tests/test_database_cache.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import random
from datetime import date
from datetime import date, datetime
from http import HTTPStatus

from flask import current_app, url_for
Expand Down Expand Up @@ -123,7 +123,7 @@ def test_latest_incident_update(mockdata, client, faker):
assert has_database_cache_entry(department, KEY_DEPT_INCIDENTS_LAST_UPDATED)
assert has_database_cache_entry(department, KEY_DEPT_OFFICERS_LAST_UPDATED)

test_date = faker.date_time()
test_date = datetime(2000, 5, 25, 1, 45)

address_form = LocationForm(
street_name=faker.street_address(),
Expand Down

0 comments on commit fe1aa2e

Please sign in to comment.