1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
Description: Disable flaky test
Author: Ximin Luo <infinity0@pwned.gg>
Bug: https://trac.torproject.org/projects/tor/ticket/12052
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/facilitator/fp-facilitator-test.py
+++ b/facilitator/fp-facilitator-test.py
@@ -232,7 +232,7 @@
time.sleep(0.3)
self.assertRaises(socket.error, s.send, "w")
- def test_readline_limit(self):
+ def _test_readline_limit(self):
"""Test that reads won't buffer indefinitely."""
s = self.gimme_socket()
buflen = 0
|