Skip to content

Commit

Permalink
Tests passing
Browse files Browse the repository at this point in the history
  • Loading branch information
ask committed Dec 18, 2014
1 parent 6c5cfe7 commit 8184205
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion celery/tests/bin/test_celeryd_detach.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def test_execute_from_commandline(self, detach, exit):
detach.assert_called_with(
path=x.execv_path, uid=None, gid=None,
umask=None, fake=False, logfile='/var/log', pidfile='celeryd.pid',
working_directory=None,
working_directory=None, executable=None,
argv=x.execv_argv + [
'-c', '1', '-lDEBUG',
'--logfile=/var/log', '--pidfile=celeryd.pid',
Expand Down
2 changes: 1 addition & 1 deletion celery/tests/bin/test_multi.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def test_restart(self):

waitexec.return_value = 0
callback('jerry', ['arg'], 13)
waitexec.assert_called_with(['arg'])
waitexec.assert_called_with(['arg'], path=sys.executable)
self.assertIn('OK', self.fh.getvalue())
self.fh.seek(0)
self.fh.truncate()
Expand Down

0 comments on commit 8184205

Please sign in to comment.