##// END OF EJS Templates
test-commandserver: remove unused repopath argument from check()...
Yuya Nishihara -
r22991:a94594f5 default
parent child Browse files
Show More
@@ -62,9 +62,9 b' def runcommand(server, args, output=sys.'
62 if ch.isupper():
62 if ch.isupper():
63 return
63 return
64
64
65 def check(func, repopath=None):
65 def check(func):
66 sys.stdout.flush()
66 sys.stdout.flush()
67 server = connect(repopath)
67 server = connect()
68 try:
68 try:
69 return func(server)
69 return func(server)
70 finally:
70 finally:
General Comments 0
You need to be logged in to leave comments. Login now