Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

Commit

Permalink
fix test for schedule in selected tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
binux committed May 22, 2015
1 parent a46dd6a commit b55607d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,10 @@ def test_35_new_task(self):
self.assertGreater(len(self.rpc.get_active_tasks()), 0)
self.assertIsNotNone(task)
self.assertEqual(task['project'], 'test_project')
self.assertIn('schedule', task)
self.assertIn('fetch', task)
self.assertIn('process', task)
self.assertNotIn('schedule', task)
self.assertIn('track', task)
self.assertEqual(task['fetch']['data'], 'abc')

def test_37_force_update_processing_task(self):
Expand Down

0 comments on commit b55607d

Please sign in to comment.