/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-22 00:52:45 UTC
  • mfrom: (6973.7.4 python3-f)
  • Revision ID: jelmer@jelmer.uk-20180622005245-0q92vv00fy9ouyqv
Merge lp:~jelmer/brz/python3-f

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):