mirror of
https://github.com/progval/irctest.git
synced 2025-04-06 07:19:54 +00:00
Fix test on servers not implementing server-time.
This commit is contained in:
@ -38,7 +38,8 @@ class EchoMessageTestCase(cases.BaseServerTestCase):
|
||||
self.sendLine(1, 'JOIN #chan')
|
||||
|
||||
if not solo:
|
||||
self.connectClient('qux', capabilities=['server-time'])
|
||||
capabilities = ['server-time'] if server_time else []
|
||||
self.connectClient('qux', capabilities=capabilities)
|
||||
self.sendLine(2, 'JOIN #chan')
|
||||
|
||||
# Synchronize and clean
|
||||
|
Reference in New Issue
Block a user