Skip to content

Commit

Permalink
fix interface test errors (by changing the interface)
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Sep 21, 2012
1 parent 9d25548 commit 0dc3cb9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions master/buildbot/test/interfaces/test_remotecommand.py
Expand Up @@ -34,15 +34,17 @@ def makeRemoteCommand(self):
def test_signature_RemoteCommand_constructor(self):
@self.assertArgSpecMatches(self.remoteCommandClass.__init__)
def __init__(self, remote_command, args, ignore_updates=False,
collectStdout=False, decodeRC={0:SUCCESS}):
collectStdout=False, collectStderr=False,
decodeRC={0:SUCCESS}):
pass

def test_signature_RemoteShellCommand_constructor(self):
@self.assertArgSpecMatches(self.remoteShellCommandClass.__init__)
def __init__(self, workdir, command, env=None, want_stdout=1,
want_stderr=1, timeout=20*60, maxTime=None, logfiles={},
usePTY="slave-config", logEnviron=True, collectStdout=False,
interruptSignal=None, initialStdin=None, decodeRC={0:SUCCESS}):
collectStderr=False, interruptSignal=None, initialStdin=None,
decodeRC={0:SUCCESS}):
pass

def test_signature_run(self):
Expand Down

0 comments on commit 0dc3cb9

Please sign in to comment.