diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-04-09 13:44:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-09 13:44:38 -0400 |
commit | 0b3112123da5fae4964db784e3bab0c4d83d9d62 (patch) | |
tree | 8d2766cf654b7fd2b446d15d4bbb8013cce0fd1a /tests/module_api | |
parent | Fix duplicate logging of exceptions in transaction processing (#9780) (diff) | |
download | synapse-0b3112123da5fae4964db784e3bab0c4d83d9d62.tar.xz |
Use mock from the stdlib. (#9772)
Diffstat (limited to 'tests/module_api')
-rw-r--r-- | tests/module_api/test_api.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/module_api/test_api.py b/tests/module_api/test_api.py index 1d1fceeecf..349f93560e 100644 --- a/tests/module_api/test_api.py +++ b/tests/module_api/test_api.py @@ -12,7 +12,7 @@ # 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. -from mock import Mock +from unittest.mock import Mock from synapse.api.constants import EduTypes from synapse.events import EventBase @@ -358,7 +358,8 @@ class ModuleApiTestCase(FederatingHomeserverTestCase): self.hs.get_federation_transport_client().send_transaction.call_args_list ) for call in calls: - federation_transaction = call.args[0] # type: Transaction + call_args = call[0] + federation_transaction = call_args[0] # type: Transaction # Get the sent EDUs in this transaction edus = federation_transaction.get_dict()["edus"] |