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

code_spécifique_watcha
Andrew Morgan 4 years ago committed by GitHub
parent a312e890f5
commit 74f29284aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/8592.misc
  2. 1
      tests/rest/client/v2_alpha/test_account.py
  3. 1
      tests/rest/client/v2_alpha/test_auth.py

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

@ -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()

@ -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

Loading…
Cancel
Save