tweaks to chathistory test

This commit is contained in:
Shivaram Lingamneni 2020-02-17 22:38:18 -05:00
parent 5073dd7a3d
commit 68d7813325

View File

@ -71,11 +71,16 @@ class ChathistoryTestCase(cases.BaseServerTestCase):
"password": MYSQL_PASSWORD, "password": MYSQL_PASSWORD,
"history-database": "oragono_history", "history-database": "oragono_history",
} }
config['accounts']['bouncer'] = {
'enabled': True,
'allowed-by-default': True,
'always-on': 'opt-out',
}
config['history']['persistent'] = { config['history']['persistent'] = {
"enabled": True, "enabled": True,
"unregistered-channels": True, "unregistered-channels": True,
"registered-channels": "opt-out", "registered-channels": "opt-out",
"clients": "opt-out", "direct-messages": "opt-out",
} }
return config return config