~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_store.py

Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
81
81
class TestCompressedTextStore(TestCaseInTempDir, TestStores):
82
82
 
83
83
    def get_store(self, path=u'.'):
84
 
        t = LocalTransport(path)
 
84
        t = transport.get_transport(path)
85
85
        return TextStore(t, compressed=True)
86
86
 
87
87
    def test_total_size(self):
138
138
class TestTextStore(TestCaseInTempDir, TestStores):
139
139
 
140
140
    def get_store(self, path=u'.'):
141
 
        t = LocalTransport(path)
 
141
        t = transport.get_transport(path)
142
142
        return TextStore(t, compressed=False)
143
143
 
144
144
    def test_total_size(self):
156
156
class TestMixedTextStore(TestCaseInTempDir, TestStores):
157
157
 
158
158
    def get_store(self, path=u'.', compressed=True):
159
 
        t = LocalTransport(path)
 
159
        t = transport.get_transport(path)
160
160
        return TextStore(t, compressed=compressed)
161
161
 
162
162
    def test_get_mixed(self):