Sfoglia il codice sorgente

lint

tags/v1.25.0rc1
Richard van der Hoff 3 anni fa
parent
commit
c9dd47d668
5 ha cambiato i file con 3 aggiunte e 7 eliminazioni
  1. +0
    -2
      tests/replication/test_auth.py
  2. +1
    -2
      tests/replication/test_client_reader_shard.py
  3. +1
    -1
      tests/rest/client/v1/test_login.py
  4. +0
    -1
      tests/rest/client/v2_alpha/test_auth.py
  5. +1
    -1
      tests/unittest.py

+ 0
- 2
tests/replication/test_auth.py Vedi File

@@ -13,9 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from typing import Tuple

from synapse.http.site import SynapseRequest
from synapse.rest.client.v2_alpha import register

from tests.replication._base import BaseMultiWorkerStreamTestCase


+ 1
- 2
tests/replication/test_client_reader_shard.py Vedi File

@@ -14,11 +14,10 @@
# limitations under the License.
import logging

from synapse.http.site import SynapseRequest
from synapse.rest.client.v2_alpha import register

from tests.replication._base import BaseMultiWorkerStreamTestCase
from tests.server import FakeChannel, make_request
from tests.server import make_request

logger = logging.getLogger(__name__)



+ 1
- 1
tests/rest/client/v1/test_login.py Vedi File

@@ -715,7 +715,7 @@ class AppserviceLoginRestServletTestCase(unittest.HomeserverTestCase):
]

def register_as_user(self, username):
channel = self.make_request(
self.make_request(
b"POST",
"/_matrix/client/r0/register?access_token=%s" % (self.service.token,),
{"username": username},


+ 0
- 1
tests/rest/client/v2_alpha/test_auth.py Vedi File

@@ -20,7 +20,6 @@ from twisted.internet.defer import succeed
import synapse.rest.admin
from synapse.api.constants import LoginType
from synapse.handlers.ui_auth.checkers import UserInteractiveAuthChecker
from synapse.http.site import SynapseRequest
from synapse.rest.client.v1 import login
from synapse.rest.client.v2_alpha import auth, devices, register
from synapse.rest.oidc import OIDCResource


+ 1
- 1
tests/unittest.py Vedi File

@@ -20,7 +20,7 @@ import hmac
import inspect
import logging
import time
from typing import Dict, Optional, Tuple, Type, TypeVar, Union, overload
from typing import Dict, Optional, Type, TypeVar, Union

from mock import Mock, patch



Caricamento…
Annulla
Salva