1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-16 04:48:48 -04:00

linting fix for test_tx

This commit is contained in:
2026-02-05 17:04:57 -05:00
parent 6f9e6b2993
commit c62d0545c6
+2 -2
View File
@@ -531,8 +531,8 @@ class TestAckSendSchedulerThread(unittest.TestCase):
ack_packet2 = fake.fake_ack_packet()
ack_packet2.send_count = 0
mock_tracker.keys.return_value = ['123', '456']
mock_tracker.get.side_effect = (
lambda x: ack_packet1 if x == '123' else ack_packet2
mock_tracker.get.side_effect = lambda x: (
ack_packet1 if x == '123' else ack_packet2
)
mock_tracker_class.return_value = mock_tracker