Skip to content
Snippets Groups Projects
Commit 5ba7447e authored by Daniel Salzman's avatar Daniel Salzman
Browse files

tests-extra: fix missing parentheses in function close

parent d37f5825
No related branches found
No related tags found
1 merge request!330Knsupdate pubkey processing fix
......@@ -67,10 +67,10 @@ class Test(object):
try:
s = socket.socket(proto, socket.SOCK_DGRAM)
s.bind((Test.LOCAL_ADDR[self.ip], port))
s.close
s.close()
s = socket.socket(proto, socket.SOCK_STREAM)
s.bind((Test.LOCAL_ADDR[self.ip], port))
s.close
s.close()
except:
return False
......
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