Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo suceeded -> succeeded #2258

Merged
merged 1 commit into from
Oct 14, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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