/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/test_config.py

  • Committer: Jelmer Vernooij
  • Date: 2018-06-21 23:59:28 UTC
  • mfrom: (6973.6.4 python3-e)
  • Revision ID: jelmer@jelmer.uk-20180621235928-f7z0vf0lxc6ieo9e
Merge lp:~jelmer/brz/python3-e

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    )
45
45
from ..sixish import (
46
46
    BytesIO,
 
47
    text_type,
47
48
    )
48
49
from ..transport import remote as transport_remote
49
50
from . import (
522
523
        self.assertEqual(config.config_dir(), self.brz_home)
523
524
 
524
525
    def test_config_dir_is_unicode(self):
525
 
        self.assertIsInstance(config.config_dir(), unicode)
 
526
        self.assertIsInstance(config.config_dir(), text_type)
526
527
 
527
528
    def test_config_filename(self):
528
529
        self.assertEqual(config.config_filename(),
554
555
        self.assertEqual(config.config_dir(), self.bzr_home)
555
556
 
556
557
    def test_config_dir_is_unicode(self):
557
 
        self.assertIsInstance(config.config_dir(), unicode)
 
558
        self.assertIsInstance(config.config_dir(), text_type)
558
559
 
559
560
    def test_config_filename(self):
560
561
        self.assertEqual(config.config_filename(),