0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-02 02:38:59 +02:00

Remove some extraneous @unittest.INFOs on unit tests (#8592)

This commit is contained in:
Andrew Morgan 2020-10-20 11:49:15 +01:00 committed by GitHub
parent a312e890f5
commit 74f29284aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1 additions and 2 deletions

1
changelog.d/8592.misc Normal file
View file

@ -0,0 +1 @@
Remove extraneous unittest logging decorators from unit tests.

View file

@ -352,7 +352,6 @@ class DeactivateTestCase(unittest.HomeserverTestCase):
self.render(request)
self.assertEqual(request.code, 401)
@unittest.INFO
def test_pending_invites(self):
"""Tests that deactivating a user rejects every pending invite for them."""
store = self.hs.get_datastore()

View file

@ -104,7 +104,6 @@ class FallbackAuthTests(unittest.HomeserverTestCase):
self.assertEqual(len(attempts), 1)
self.assertEqual(attempts[0][0]["response"], "a")
@unittest.INFO
def test_fallback_captcha(self):
"""Ensure that fallback auth via a captcha works."""
# Returns a 401 as per the spec