From 8ef752e3ad4c40bbb767e7932e3103f5ccf02dbd Mon Sep 17 00:00:00 2001 From: "Tobias Wellnitz, DH1TW" Date: Wed, 30 Jul 2025 00:49:38 +0200 Subject: [PATCH] added unittest for frequency conversion (2.4GHz - 13cm) --- test/test_utils_freq_to_band.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test_utils_freq_to_band.py b/test/test_utils_freq_to_band.py index 1373f0c..1672c3f 100644 --- a/test/test_utils_freq_to_band.py +++ b/test/test_utils_freq_to_band.py @@ -65,6 +65,7 @@ class Test_utils_freq_to_band(): assert freq_to_band(1200000) == {"band" : 0.23, "mode":None} def test_shf_frequencies(self): + assert freq_to_band(2320200) == {"band" : 0.13, "mode":None} assert freq_to_band(2390000) == {"band" : 0.13, "mode":None} assert freq_to_band(3300000) == {"band" : 0.09, "mode":None}