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

  • Committer: Jelmer Vernooij
  • Date: 2018-06-29 20:24:31 UTC
  • mfrom: (6999 work)
  • mto: This revision was merged to the branch mainline in revision 7008.
  • Revision ID: jelmer@jelmer.uk-20180629202431-2td8kihrsthzuvau
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
        repo = Repository.open('.')
132
132
        tree = repo.revision_tree(revid)
133
133
        self.assertEqual(tree.get_revision_id(), revid)
134
 
        self.assertEqual("text\n", tree.get_file_text("data"))
 
134
        self.assertEqual(b"text\n", tree.get_file_text("data"))
135
135
 
136
136
 
137
137
class TestGitRepository(tests.TestCaseWithTransport):