From f85e28bafaac73a19405767644bd429ec2ef5a66 Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Wed, 11 Feb 2015 17:57:27 -0500 Subject: [PATCH] Got a bit too aggressive with pyflakes for the schedules test --- awx/main/tests/schedules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/main/tests/schedules.py b/awx/main/tests/schedules.py index d0097a167e..157bab3c89 100644 --- a/awx/main/tests/schedules.py +++ b/awx/main/tests/schedules.py @@ -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):