mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2025-05-05 14:05:03 -04:00
Use mock from the stdlib. (#9772)
This commit is contained in:
parent
f946450184
commit
0b3112123d
82 changed files with 86 additions and 126 deletions
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue