~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_lockdir.py

(jelmer) Reduce the number of connections made during "bzr branch
 --stacked". (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
from bzrlib.tests import (
44
44
    features,
45
45
    TestCase,
46
 
    TestCaseInTempDir,
47
46
    TestCaseWithTransport,
48
47
    )
49
48
 
655
654
        self.assertEqual([], self._calls)
656
655
 
657
656
 
658
 
class TestLockHeldInfo(TestCaseInTempDir):
 
657
class TestLockHeldInfo(TestCase):
659
658
    """Can get information about the lock holder, and detect whether they're
660
659
    still alive."""
661
660