Revert "Fix integration tests launching - remove redundant "config_dir" argument in call to ShellTestCase.run_run from SaltDaemonScriptBase._wait_until_running"

This commit is contained in:
Mike Place 2016-10-20 19:48:59 +09:00 committed by GitHub
parent c00da99e31
commit 430ea9e780
2 changed files with 1 additions and 2 deletions

1
.gitignore vendored
View File

@ -50,7 +50,6 @@ htmlcov/
/*.iml
*.sublime-project
*.sublime-workspace
/.vscode
# ignore ctags file
tags

View File

@ -618,7 +618,7 @@ class SaltDaemonScriptBase(SaltScriptBase, ShellTestCase):
pass
del sock
elif isinstance(port, str):
joined = self.run_run('manage.joined')
joined = self.run_run('manage.joined', config_dir=self.config_dir)
joined = [x.lstrip('- ') for x in joined]
if port in joined:
check_ports.remove(port)