Merge commit 'refs/pull/857/head' of github.com:meshtastic/python into tmp/merge-918-857

This commit is contained in:
Ian McEwen
2026-05-31 12:52:02 -07:00
4 changed files with 17 additions and 20 deletions

View File

@@ -15,7 +15,7 @@ def test_StreamInterface():
"""Test that we cannot instantiate a StreamInterface based on noProto"""
with pytest.raises(Exception) as pytest_wrapped_e:
StreamInterface()
assert pytest_wrapped_e.type == Exception
assert pytest_wrapped_e.type == RuntimeError
@pytest.mark.unit