diff options
author | louiz’ <louiz@louiz.org> | 2016-04-22 11:55:30 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-04-22 11:57:58 +0200 |
commit | 3fe55ab0b3935339e77c86c55cd81434c29edec8 (patch) | |
tree | 50c7030ab5aab209ed4f248152cb40490bd92089 /tests/end_to_end | |
parent | 439ea262237f6c33342bf62c05de7f305a63ff2b (diff) | |
download | biboumi-3fe55ab0b3935339e77c86c55cd81434c29edec8.tar.gz biboumi-3fe55ab0b3935339e77c86c55cd81434c29edec8.tar.bz2 biboumi-3fe55ab0b3935339e77c86c55cd81434c29edec8.tar.xz biboumi-3fe55ab0b3935339e77c86c55cd81434c29edec8.zip |
Remove an unused variable
Diffstat (limited to 'tests/end_to_end')
-rw-r--r-- | tests/end_to_end/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/end_to_end/__main__.py b/tests/end_to_end/__main__.py index ef8c7aa..3811d2b 100644 --- a/tests/end_to_end/__main__.py +++ b/tests/end_to_end/__main__.py @@ -483,7 +483,7 @@ if __name__ == '__main__': print("Waiting for irc server to exit…") irc.stop() - code = asyncio.get_event_loop().run_until_complete(irc.wait()) + asyncio.get_event_loop().run_until_complete(irc.wait()) if failures: print("%d test%s failed, please fix %s." % (failures, 's' if failures > 1 else '', |