Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
odelcroi committed Nov 8, 2024
1 parent d369454 commit 1602858
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_manage_last_admin_scenarii.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ async def admin_leaves(self) -> Any:
async def checkAPIcalled(self, module:Any) -> Any:
# Test that the leave triggered a freeze of the room.
self.assertTrue(module._api.create_and_send_event_into_room.called)
args, _ = module._api.create_and_send_event_into_room.call_args()
args, _ = module._api.create_and_send_event_into_room.call_args
self.assertEqual(len(args), 1)
return args[0]

Expand Down

0 comments on commit 1602858

Please sign in to comment.