Skip to content

Commit

Permalink
fix typo suceeded -> succeeded (#2258)
Browse files Browse the repository at this point in the history
  • Loading branch information
jimexist authored and dlstadther committed Oct 14, 2017
1 parent ca2b834 commit 791abf3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion luigi/execution_summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ def _summary_format(set_tasks, worker):
if set_tasks["ever_failed"]:
if not set_tasks["failed"]:
smiley = ":)"
reason = "there were failed tasks but they all suceeded in a retry"
reason = "there were failed tasks but they all succeeded in a retry"
else:
smiley = ":("
reason = "there were failed tasks"
Expand Down
2 changes: 1 addition & 1 deletion test/execution_summary_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -1116,4 +1116,4 @@ def complete(self):
self.assertIn('Scheduled 1 task', s)
self.assertIn('Luigi Execution Summary', s)
self.assertNotIn('ever failed', s)
self.assertIn('\n\nThis progress looks :) because there were failed tasks but they all suceeded in a retry', s)
self.assertIn('\n\nThis progress looks :) because there were failed tasks but they all succeeded in a retry', s)
2 changes: 1 addition & 1 deletion test/worker_keep_alive_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def requires(self):
# ... because in this case the only work remaining depends on DISABLED tasks,
# hence it's not worth considering the wrapper task as a PENDING task to
# keep the worker alive anymore.
self.assertFalse(Succeeder.did_run) # It should never have run, it suceeded already
self.assertFalse(Succeeder.did_run) # It should never have run, it succeeded already
finally:
self.sch.prune() # This shouldnt be necessary in this version, but whatevs
t.join(timeout=1) # Wait 1 second
Expand Down

0 comments on commit 791abf3

Please sign in to comment.