~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test__dirstate_helpers.py

  • Committer: Vincent Ladeuil
  • Date: 2009-06-22 15:39:42 UTC
  • mto: (4471.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4472.
  • Revision ID: v.ladeuil+lp@free.fr-20090622153942-aorq8hfs6en444fx
Fix failing benchmarks for dirstate helpers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
 
247
247
 
248
248
class TestBisectPathLeft(tests.TestCase, TestBisectPathMixin):
249
 
    """Run all Bisect Path tests against _bisect_path_left_py."""
 
249
    """Run all Bisect Path tests against _bisect_path_left."""
250
250
 
251
251
    def get_bisect_path(self):
252
252
        from bzrlib._dirstate_helpers_py import _bisect_path_left
257
257
 
258
258
 
259
259
class TestCompiledBisectPathLeft(TestBisectPathLeft):
260
 
    """Run all Bisect Path tests against _bisect_path_right_c"""
 
260
    """Run all Bisect Path tests against _bisect_path_lect"""
261
261
 
262
262
    _test_needs_features = [CompiledDirstateHelpersFeature]
263
263
 
267
267
 
268
268
 
269
269
class TestBisectPathRight(tests.TestCase, TestBisectPathMixin):
270
 
    """Run all Bisect Path tests against _bisect_path_right_py"""
 
270
    """Run all Bisect Path tests against _bisect_path_right"""
271
271
 
272
272
    def get_bisect_path(self):
273
273
        from bzrlib._dirstate_helpers_py import _bisect_path_right
278
278
 
279
279
 
280
280
class TestCompiledBisectPathRight(TestBisectPathRight):
281
 
    """Run all Bisect Path tests against _bisect_path_right_c"""
 
281
    """Run all Bisect Path tests against _bisect_path_right"""
282
282
 
283
283
    _test_needs_features = [CompiledDirstateHelpersFeature]
284
284