diff options
author | Andrew Morgan <1342360+anoadragon453@users.noreply.github.com> | 2020-08-18 14:14:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-18 14:14:27 +0100 |
commit | 5cf7c1299541d4b5ca5b3ac547a300a87465c7e5 (patch) | |
tree | a03a9d2728e2aa0fbfe9a9a03165fab8d23f21a3 /tests | |
parent | Rename changelog from bugfix to misc. (diff) | |
download | synapse-5cf7c1299541d4b5ca5b3ac547a300a87465c7e5.tar.xz |
Remove : from allowed client_secret chars (#8101)
Closes: https://github.com/matrix-org/synapse/issues/6766 Equivalent Sydent PR: https://github.com/matrix-org/sydent/pull/309 I believe it's now time to remove the extra allowed `:` from `client_secret` parameters.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/util/test_stringutils.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/util/test_stringutils.py b/tests/util/test_stringutils.py index 4f4da29a98..8491f7cc83 100644 --- a/tests/util/test_stringutils.py +++ b/tests/util/test_stringutils.py @@ -28,9 +28,6 @@ class StringUtilsTestCase(unittest.TestCase): "_--something==_", "...--==-18913", "8Dj2odd-e9asd.cd==_--ddas-secret-", - # We temporarily allow : characters: https://github.com/matrix-org/synapse/issues/6766 - # To be removed in a future release - "SECRET:1234567890", ] bad = [ |