/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-21 14:18:24 UTC
  • mfrom: (6729.6.2 move-errors-urlutils)
  • Revision ID: jelmer@jelmer.uk-20170721141824-z0s7jhoijaxw5bim
Merge lp:~jelmer/brz/move-errors-urlutils.

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')