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 a30cbbb commit ec05d69Copy full SHA for ec05d69
tests/system/solvers/test_26_emit.py
@@ -283,9 +283,8 @@ def test_04_radio_component(self, add_app):
283
assert "Frequency should be within 1Hz to 100 GHz." in str(e)
284
285
# test power unit conversions
286
- # TODO(bkaylor): What should the unit here be?
287
- # band_power = radio.band_tx_power(band)
288
- # assert band_power == 40.0
+ band_power = radio.band_tx_power(band, "dBm")
+ assert band_power == 40.0
289
band_power = radio.band_tx_power(band, "dBW")
290
assert band_power == 10.0
291
band_power = radio.band_tx_power(band, "mW")
0 commit comments