465
464
# Out of order requests. The requests should get combined, but then be
466
465
# yielded out-of-order. We also need one that is at the end of a
467
466
# previous range. See bug #293746
468
self.checkRequestAndYield([(0, b'a'), (10, b'k'), (4, b'efg'), (1, b'bcd')],
469
data, [(0, 1), (10, 1), (4, 3), (1, 3)])
468
[(0, b'a'), (10, b'k'), (4, b'efg'), (1, b'bcd')],
469
data, [(0, 1), (10, 1), (4, 3), (1, 3)])
472
472
class TestUsesAuthConfig(TestCaseWithSFTPServer):