Commit 3bdc002e authored by Facundo Batista's avatar Facundo Batista

Minor fix to the tests pass ok even with -O.

parent d5b3fed1
......@@ -150,7 +150,8 @@ class OpenSSLServer(threading.Thread):
s = socket.socket()
s.connect(("localhost", 4433))
s.close()
assert self.s.stdout.readline() == "ERROR\n"
if self.s.stdout.readline() != "ERROR\n":
raise ValuError
except:
self.haveServer = False
else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment