/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/git/tests/test_blackbox.py

  • Committer: Jelmer Vernooij
  • Date: 2020-03-22 20:02:36 UTC
  • mto: (7490.7.7 work)
  • mto: This revision was merged to the branch mainline in revision 7501.
  • Revision ID: jelmer@jelmer.uk-20200322200236-fsbl91ktcn6fcbdd
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
373
373
        self.run_bzr(["git-import", "--colocated", "a", "b"])
374
374
        self.assertEqual(set([".bzr"]), set(os.listdir("b")))
375
375
        b = ControlDir.open("b")
376
 
        self.assertEqual(["abranch"], b.get_branches().branch_names())
 
376
        self.assertEqual(["abranch"], b.branch_names())
377
377
        self.assertEqual(["atag"],
378
378
                         list(b.open_branch("abranch").tags.get_tag_dict().keys()))
379
379