Skip to content
Snippets Groups Projects
Commit 36b4f8f5 authored by John Hodge's avatar John Hodge
Browse files

Tools/NetTest - Fix compilation error

parent 3d67e212
No related merge requests found
......@@ -385,8 +385,10 @@ bool Test_TCP_Retransmit(void)
TEST_ASSERT( TCP_Pkt_CheckC(rxlen, rxbuf, &ofs, &len, &testconn, TCP_ACK|TCP_PSH) );
TEST_STEP("3. Expect nothing for TCP_RTX_TIMEOUT_1");
TEST_ASSERT( Net_Receive(0, sizeof(rxbuf), rxbuf, RETX_TIMEOUT-100) == 0 )
TEST_ASSERT( Net_Receive(0, sizeof(rxbuf), rxbuf, RETX_TIMEOUT-100) == 0 );
TEST_STEP("4. Expect a retransmit");
TEST_ASSERT_rx();
return false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment