fixed function name for test to be what it is actually testing and prevent name colision

This commit is contained in:
Anis Jonischkeit 2018-03-14 12:51:34 +10:00
parent 1a1efbd77d
commit 2a67ffeb35

View File

@ -34,7 +34,7 @@ def test_datetime_query():
assert result.data == {'datetime': isoformat}
def test_datetime_query():
def test_date_query():
now = datetime.datetime.now().replace(tzinfo=pytz.utc).date()
isoformat = now.isoformat()