~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_too_much.py

  • Committer: John Arbash Meinel
  • Date: 2006-10-05 22:42:09 UTC
  • mto: This revision was merged to the branch mainline in revision 2071.
  • Revision ID: john@arbash-meinel.com-20061005224209-6847d92c751c2dc1
Now that mkdtemp and rmtree are lazy, they should not be directly improted.

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
import sys
41
41
 
42
42
import bzrlib
 
43
from bzrlib import (
 
44
    osutils,
 
45
    )
43
46
from bzrlib.branch import Branch
44
 
import bzrlib.bzrdir as bzrdir
45
47
from bzrlib.errors import BzrCommandError
46
48
from bzrlib.osutils import (
47
49
    has_symlinks,
48
50
    pathjoin,
49
 
    rmtree,
50
51
    terminal_width,
51
52
    )
52
53
from bzrlib.tests.HTTPTestUtil import TestCaseWithWebserver
277
278
        self.runbzr('pull')
278
279
        self.runbzr('pull ../c')
279
280
        self.runbzr('branch ../c ../d')
280
 
        rmtree('../c')
 
281
        osutils.rmtree('../c')
281
282
        self.runbzr('pull')
282
283
        os.chdir('../b')
283
284
        self.runbzr('pull')