Skip to content

Commit

Permalink
Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
eduazocar committed Oct 13, 2022
1 parent 2f2643d commit e0e2b5a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/driver_radio/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ void test_set_netopt_tx_power(void) {

void test_get_netopt_tx_power(void) {
int16_t txpower=0;
xtimer_sleep(5);
int8_t err = get_netopt_tx_power(&txpower);
printf("Tx Power: %"PRId16"\n", txpower);
TEST_ASSERT_EQUAL_INT(0, err);
Expand Down Expand Up @@ -66,8 +65,8 @@ Test *tests_radio_module(void) {
EMB_UNIT_TESTFIXTURES(fixtures){
new_TestFixture(test_get_ieee802154_iface),
new_TestFixture(test_set_netopt_tx_power),
new_TestFixture(test_get_netopt_tx_power),
new_TestFixture(test_set_netopt_channel),
new_TestFixture(test_get_netopt_tx_power),
new_TestFixture(test_get_netopt_channel),
new_TestFixture(test_initial_radio_setup),
};
Expand Down

0 comments on commit e0e2b5a

Please sign in to comment.