Skip to content

Commit

Permalink
[tests] fix test flakiness
Browse files Browse the repository at this point in the history
  • Loading branch information
jlaine committed Jul 14, 2021
1 parent 0829320 commit ceebca4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_tls.py
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ def _handshake(self, client, server):
server.handle_message(server_input, server_buf)
self.assertEqual(server.state, State.SERVER_EXPECT_FINISHED)
client_input = merge_buffers(server_buf)
self.assertGreaterEqual(len(client_input), 588)
self.assertGreaterEqual(len(client_input), 587)
self.assertLessEqual(len(client_input), 2316)

reset_buffers(server_buf)
Expand Down

0 comments on commit ceebca4

Please sign in to comment.