/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/tests/per_transport.py

  • Committer: Jelmer Vernooij
  • Date: 2017-07-23 22:06:41 UTC
  • mfrom: (6738 trunk)
  • mto: This revision was merged to the branch mainline in revision 6739.
  • Revision ID: jelmer@jelmer.uk-20170723220641-69eczax9bmv8d6kk
Merge trunk, address review comments.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
    )
35
35
from ..errors import (ConnectionError,
36
36
                      FileExists,
37
 
                      InvalidURL,
38
37
                      NoSuchFile,
39
38
                      PathError,
40
39
                      TransportNotPossible,
1554
1553
 
1555
1554
        # A plain unicode string is not a valid url
1556
1555
        for fname in files:
1557
 
            self.assertRaises(InvalidURL, t.get, fname)
 
1556
            self.assertRaises(urlutils.InvalidURL, t.get, fname)
1558
1557
 
1559
1558
        for fname in files:
1560
1559
            fname_utf8 = fname.encode('utf-8')