diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2019-03-19 12:27:07 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-19 12:27:07 +0000 |
commit | 5cf00c9f6085b62860e3e10f35f21e4004c70cef (patch) | |
tree | c113c95b90be39a6f0823365be6ac8087f800805 /tests/push | |
parent | Merge pull request #4888 from matrix-org/rav/fix_disabled_hs (diff) | |
parent | Fix RegistrationTestCase (diff) | |
download | synapse-5cf00c9f6085b62860e3e10f35f21e4004c70cef.tar.xz |
Merge pull request #4889 from matrix-org/rav/test_real_config
Use a regular HomeServerConfig object for unit tests
Diffstat (limited to 'tests/push')
-rw-r--r-- | tests/push/test_email.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/push/test_email.py b/tests/push/test_email.py index 50ee6910d1..be3fed8de3 100644 --- a/tests/push/test_email.py +++ b/tests/push/test_email.py @@ -63,8 +63,10 @@ class EmailPusherTests(HomeserverTestCase): config.email_smtp_port = 20 config.require_transport_security = False config.email_smtp_user = None + config.email_smtp_pass = None config.email_app_name = "Matrix" config.email_notif_from = "test@example.com" + config.email_riot_base_url = None hs = self.setup_test_homeserver(config=config, sendmail=sendmail) |