From ce6e4a8e5719870c0aca56cb6b162163f59e764c Mon Sep 17 00:00:00 2001 From: Daniele Forsi IU5HKX Date: Sat, 19 Jul 2025 16:59:09 +0200 Subject: [PATCH] Make test_amp.py more similar to the others --- bindings/python/test_amp.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/bindings/python/test_amp.py b/bindings/python/test_amp.py index 8167a1f7e..9d6a1d738 100755 --- a/bindings/python/test_amp.py +++ b/bindings/python/test_amp.py @@ -63,7 +63,11 @@ class TestClass: assert level is None assert amp.set_powerstat(Hamlib.RIG_POWER_ON) is None assert amp.get_powerstat() == Hamlib.RIG_POWER_ON + assert amp.close() is None + assert amp.state.comm_state == 0 + info = amp.get_info() + assert info is None def test_object_creation(self):