Commit 152403bb by Stephen Sanchez

Fixing time zone warning on tests.

parent 71130ce8
...@@ -81,8 +81,9 @@ class TestApi(TestCase): ...@@ -81,8 +81,9 @@ class TestApi(TestCase):
def test_get_submission_to_evaluate(self): def test_get_submission_to_evaluate(self):
self._create_student_and_submission("Tim", "Tim's answer", MONDAY) self._create_student_and_submission("Tim", "Tim's answer", MONDAY)
self._create_student_and_submission("Bob", "Bob's answer", TUESDAY) self._create_student_and_submission("Bob", "Bob's answer", TUESDAY)
self._create_student_and_submission("Sally", "Sally's answer", self._create_student_and_submission(
WEDNESDAY) "Sally", "Sally's answer", WEDNESDAY
)
self._create_student_and_submission("Jim", "Jim's answer", THURSDAY) self._create_student_and_submission("Jim", "Jim's answer", THURSDAY)
submission = api.get_submission_to_evaluate(STUDENT_ITEM) submission = api.get_submission_to_evaluate(STUDENT_ITEM)
......
...@@ -5,6 +5,7 @@ from django.db import DatabaseError ...@@ -5,6 +5,7 @@ from django.db import DatabaseError
from django.test import TestCase from django.test import TestCase
from nose.tools import raises from nose.tools import raises
from mock import patch from mock import patch
import pytz
from submissions.api import create_submission, get_submissions, SubmissionRequestError, SubmissionInternalError from submissions.api import create_submission, get_submissions, SubmissionRequestError, SubmissionInternalError
from submissions.models import Submission from submissions.models import Submission
...@@ -62,8 +63,8 @@ class TestApi(TestCase): ...@@ -62,8 +63,8 @@ class TestApi(TestCase):
self._assert_submission(submission, ANSWER_ONE, 1, 1) self._assert_submission(submission, ANSWER_ONE, 1, 1)
def test_get_latest_submission(self): def test_get_latest_submission(self):
past_date = datetime.date(2007, 11, 23) past_date = datetime.datetime(2007, 9, 12, 0, 0, 0, 0, pytz.UTC)
more_recent_date = datetime.date(2011, 10, 15) more_recent_date = datetime.datetime(2007, 9, 13, 0, 0, 0, 0, pytz.UTC)
create_submission(STUDENT_ITEM, ANSWER_ONE, more_recent_date) create_submission(STUDENT_ITEM, ANSWER_ONE, more_recent_date)
create_submission(STUDENT_ITEM, ANSWER_TWO, past_date) create_submission(STUDENT_ITEM, ANSWER_TWO, past_date)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment