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

  • Committer: Jelmer Vernooij
  • Date: 2018-07-23 22:25:11 UTC
  • mto: This revision was merged to the branch mainline in revision 7053.
  • Revision ID: jelmer@jelmer.uk-20180723222511-gns8mqohgakwa2b9
Some brz-git fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
84
84
        d = ControlDir.open('.')
85
85
        thebranch = d.create_branch()
86
86
        self.assertEqual(
87
 
            "<LocalGitBranch('%s/', u'master')>" % (
88
 
                urlutils.local_path_to_url(self.test_dir),),
 
87
            "<LocalGitBranch('%s/', %r)>" % (
 
88
                urlutils.local_path_to_url(self.test_dir),
 
89
                u'master'),
89
90
            repr(thebranch))
90
91
 
91
92
    def test_last_revision_is_null(self):