Skip to content

Commit 57a0f62

Browse files
committed
chore(plc4px): Remove manual test
1 parent 45ffc58 commit 57a0f62

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

plc4py/tests/unit/plc4py/drivers/modbus/test_modbus_connection.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@
3030
@pytest.mark.asyncio
3131
async def manual_test_plc_driver_modbus_connect():
3232
driver_manager = PlcDriverManager()
33-
async with driver_manager.connection("modbus://127.0.0.1:5555") as connection:
33+
async with driver_manager.connection("modbus://1") as connection:
3434
assert connection.is_connected()
3535
assert not connection.is_connected()
3636

3737

3838
@pytest.mark.asyncio
39-
async def test_plc_driver_modbus_read():
39+
async def manual_test_plc_driver_modbus_read():
4040
driver_manager = PlcDriverManager()
41-
async with driver_manager.connection("modbus://127.0.0.1:5555") as connection:
41+
async with driver_manager.connection("modbus://192.168.23.12:502") as connection:
4242
with connection.read_request_builder() as builder:
4343
builder.add_item("Random Tag", "4x00001[10]")
4444
request = builder.build()

0 commit comments

Comments
 (0)