Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def test_login_twice(self):
with self.assertRaises(imaplib2.IMAP4.error) as expected:
imap_client = yield from self.login_user('user', 'pass', lib=imaplib2.IMAP4)
yield from asyncio.wait_for(
self.loop.run_in_executor(None, functools.partial(imap_client.login, 'user', 'pass')), 1)
self.assertEqual(expected.exception.args, ('command LOGIN illegal in state AUTH',))