diff options
Diffstat (limited to 'ctrack/register/tests/test_views.py')
-rw-r--r-- | ctrack/register/tests/test_views.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ctrack/register/tests/test_views.py b/ctrack/register/tests/test_views.py index 4e8152c..4158692 100644 --- a/ctrack/register/tests/test_views.py +++ b/ctrack/register/tests/test_views.py @@ -25,7 +25,7 @@ class TestSingleDateTimeEvent: expected_fields = [ "type_descriptor", "short_description", - "datetime", + "date", "comments", "location", ] @@ -47,7 +47,7 @@ class TestSingleDateTimeEvent: data = { "type_descriptor": "MEETING", "short_description": "Test Short Description", - "datetime": bad_date, + "date": bad_date, "comments": "Blah...", "location": "The Moon", } |