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 68ec588 commit dd88037Copy full SHA for dd88037
meshtastic/tests/test_main.py
@@ -408,8 +408,8 @@ def test_main_nodes(capsys):
408
409
iface = MagicMock(autospec=SerialInterface)
410
411
- def mock_showNodes():
412
- print("inside mocked showNodes")
+ def mock_showNodes(includeSelf, showFields):
+ print(f"inside mocked showNodes: {includeSelf} {showFields}")
413
414
iface.showNodes.side_effect = mock_showNodes
415
with patch("meshtastic.serial_interface.SerialInterface", return_value=iface) as mo:
0 commit comments