mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-05 08:14:19 -04:00
Stop using deprecated keyIds
param on /key/v2/server (#14525)
Fixes #14523.
This commit is contained in:
parent
13aa29db1d
commit
ecb6fe9d9c
6 changed files with 48 additions and 83 deletions
|
@ -11,7 +11,6 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
import urllib.parse
|
||||
from io import BytesIO, StringIO
|
||||
from typing import Any, Dict, Optional, Union
|
||||
from unittest.mock import Mock
|
||||
|
@ -65,9 +64,7 @@ class BaseRemoteKeyResourceTestCase(unittest.HomeserverTestCase):
|
|||
self.assertTrue(ignore_backoff)
|
||||
self.assertEqual(destination, server_name)
|
||||
key_id = "%s:%s" % (signing_key.alg, signing_key.version)
|
||||
self.assertEqual(
|
||||
path, "/_matrix/key/v2/server/%s" % (urllib.parse.quote(key_id),)
|
||||
)
|
||||
self.assertEqual(path, "/_matrix/key/v2/server")
|
||||
|
||||
response = {
|
||||
"server_name": server_name,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue