We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb80c15 commit d1af691Copy full SHA for d1af691
test/sub_transport/test_basic.py
@@ -111,6 +111,10 @@ async def test_eof_received(self, client):
111
"""Test eof_received."""
112
client.eof_received()
113
114
+ async def test_error_received(self, client):
115
+ """Test error_received."""
116
+ client.error_received(Exception("test call"))
117
+
118
async def test_callbacks(self, use_clc):
119
"""Test callbacks."""
120
client = ModbusProtocol(use_clc, False)
0 commit comments