From ca1b079e4a001c501c8fa0dd393fb34079b446ea Mon Sep 17 00:00:00 2001 From: Paul Kronenwetter Date: Fri, 17 Jun 2022 16:15:09 -0400 Subject: [PATCH] Remove commented code. --- test/test_datac0.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/test_datac0.py b/test/test_datac0.py index 5b6b0ac3..f4881fcf 100644 --- a/test/test_datac0.py +++ b/test/test_datac0.py @@ -45,7 +45,6 @@ def parameters() -> dict: connect_timeout = 10 beacon_tx_check = '"beacon":"transmitting"' - # cq_tx_check = '"cq":"transmitting"' cq_tx_check = '"qrv":"received"' ping_tx_check = '"ping":"transmitting"' connect_tx_check = '"session":"connecting"' @@ -56,11 +55,7 @@ def parameters() -> dict: connect_rx_check = '"connect":"received"' beacon_final_tx_check = [beacon_tx_check] - # cq_final_tx_check = [cq_tx_check, '"qrv":"received"'] cq_final_tx_check = ['"cq":"transmitting"', cq_tx_check] - # , '"qrv":"received"'] # <- Adding this to "cq" exacerbates the FIFO "delay" - # because the TX side needs to receive something. With this, the - # test fails more often than not. Oddly it works well for ping. ping_final_tx_check = [ping_tx_check, '"ping":"acknowledge"'] connect_final_tx_check = ['"status":"connected"', '"connect":"acknowledge"']