/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/plugins/launchpad/test_lp_api.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-15 22:53:27 UTC
  • mfrom: (7337 work)
  • mto: This revision was merged to the branch mainline in revision 7347.
  • Revision ID: jelmer@jelmer.uk-20190615225327-g77kw1v105svs31i
Merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
    def test_get_cache_directory(self):
79
79
        # get_cache_directory returns the path to a directory inside the
80
 
        # Bazaar configuration directory.
 
80
        # Breezy cache directory.
81
81
        from . import lp_api
82
 
        expected_path = osutils.pathjoin(config.config_dir(), 'launchpad')
 
82
        expected_path = osutils.pathjoin(osutils.cache_dir(), 'launchpad')
83
83
        self.assertEqual(expected_path, lp_api.get_cache_directory())