~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_pack.py

Merge bzr.dev 4157, this breaks a couple per-repository tests.

Looks like removing some of the InterRepo optimizers is revealing places
that we haven't fully finished the RemoteRepo api.

Show diffs side-by-side

added added

removed removed

Lines of Context:
68
68
class TestContainerWriter(tests.TestCase):
69
69
 
70
70
    def setUp(self):
 
71
        tests.TestCase.setUp(self)
71
72
        self.output = StringIO()
72
73
        self.writer = pack.ContainerWriter(self.output.write)
73
74