From d5b2c5383864599ddcc4e9d7c923c382b8603281 Mon Sep 17 00:00:00 2001 From: Peter Buchegger Date: Thu, 10 Nov 2022 21:41:23 +0000 Subject: [PATCH] lets try this --- HIL/tests/test_basic.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/HIL/tests/test_basic.py b/HIL/tests/test_basic.py index be7cd34..8c3585c 100644 --- a/HIL/tests/test_basic.py +++ b/HIL/tests/test_basic.py @@ -36,9 +36,11 @@ def test_aprs_msg(APRSIS): host="localhost", port=10152) aprs.connect() aprs.send_line("OE5BPA-2>APLG01:=4819.82NL01418.68E&Testing") - for i in range(2): + for i in range(5): line = APRSIS.get_line() for l in line: if l == "OE5BPA-2>APLG01,TCPIP*,qAC,OE5BPA:=4819.82NL01418.68E&Testing": return + else: + print(l) raise