Skip to content
Snippets Groups Projects
Commit abd42b0a authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

Fix syntax error with Python 2.4


Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 55cc0a44
No related branches found
No related tags found
No related merge requests found
......@@ -38,8 +38,8 @@ class TestConsole(unittest.TestCase):
self._cmds = []
self._next_cmd_exitcode = 0
def _Test(self, *args):
return gnt_instance._DoConsole(*args,
def _Test(self, console, show_command, cluster_name):
return gnt_instance._DoConsole(console, show_command, cluster_name,
feedback_fn=self._Feedback,
_runcmd_fn=self._FakeRunCmd)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment