~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_smart.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-01-11 07:01:27 UTC
  • mfrom: (5579.3.1 bzr.dev)
  • Revision ID: pqm@pqm.ubuntu.com-20110111070127-7cm7qwq6y5t0n36x
(jelmer) Remove some unused imports in the test code. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
"""
26
26
 
27
27
import bz2
28
 
from cStringIO import StringIO
29
 
import tarfile
30
28
 
31
29
from bzrlib import (
32
 
    bencode,
33
30
    branch as _mod_branch,
34
31
    bzrdir,
35
32
    errors,
36
 
    pack,
37
33
    tests,
38
34
    transport,
39
35
    urlutils,
45
41
    repository as smart_repo,
46
42
    packrepository as smart_packrepo,
47
43
    request as smart_req,
48
 
    server,
49
44
    vfs,
50
45
    )
51
46
from bzrlib.tests import test_server