1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 09:51:09 +03:00

Got a bit too aggressive with pyflakes for the schedules test

This commit is contained in:
Matthew Jones 2015-02-11 17:57:27 -05:00
parent 6a18a50d99
commit f85e28bafa

View File

@ -184,7 +184,7 @@ class ScheduleTest(BaseTest):
long_schedule = dict(name='long_schedule', description='going for a long time', enabled=True, rrule=UNTIL_SCHEDULE)
with self.current_user(self.normal_django_user):
self.post(first_url, long_schedule, expect=201)
data = self.post(first_url, long_schedule, expect=201)
self.assertNotEquals(data['dtend'], None)
def test_schedule_filtering(self):