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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-07-25 18:15:53 UTC
  • mfrom: (7045.4.7 python3-s)
  • Revision ID: breezy.the.bot@gmail.com-20180725181553-mz6zhncntlovb8ii
Fix another couple of hundred tests on Python 3.

Merged from https://code.launchpad.net/~jelmer/brz/python3-s/+merge/350749

Show diffs side-by-side

added added

removed removed

Lines of Context:
226
226
        self.run_bzr(["git-import", "--colocated", "a", "b"])
227
227
        self.assertEqual(set([".bzr"]), set(os.listdir("b")))
228
228
        b = ControlDir.open("b")
229
 
        self.assertEqual(["abranch"], b.get_branches().keys())
 
229
        self.assertEqual(["abranch"], list(b.get_branches().keys()))
230
230
        self.assertEqual(["atag"],
231
 
                b.open_branch("abranch").tags.get_tag_dict().keys())
 
231
                list(b.open_branch("abranch").tags.get_tag_dict().keys()))
232
232
 
233
233
    def test_git_import_colo(self):
234
234
        r = GitRepo.init("a", mkdir=True)