Fix linting issue

This commit is contained in:
Stuckinaboot
2019-03-03 23:54:04 +11:00
committed by stuckinaboot
parent 0c60e28150
commit a46779918f

View File

@ -1,11 +1,3 @@
import pytest
from tests.utils import cleanup
from libp2p import new_node
from libp2p.network.notifee_interface import INotifee
# pylint: disable=too-many-locals
""" """
Test Notify and Notifee by ensuring that the proper events get Test Notify and Notifee by ensuring that the proper events get
called, and that the stream passed into opened_stream is correct called, and that the stream passed into opened_stream is correct
@ -13,11 +5,18 @@ called, and that the stream passed into opened_stream is correct
Note: Listen event does not get hit because MyNotifee is passed Note: Listen event does not get hit because MyNotifee is passed
into network after network has already started listening into network after network has already started listening
TODO: Add tests to ensure conn is the correct connection
TODO: Add tests for closed_stream disconnected, listen_close when those TODO: Add tests for closed_stream disconnected, listen_close when those
features are implemented in swarm features are implemented in swarm
""" """
import pytest
from tests.utils import cleanup
from libp2p import new_node
from libp2p.network.notifee_interface import INotifee
# pylint: disable=too-many-locals
class MyNotifee(INotifee): class MyNotifee(INotifee):
# pylint: disable=too-many-instance-attributes, cell-var-from-loop # pylint: disable=too-many-instance-attributes, cell-var-from-loop