/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/tests/per_workingtree/test_executable.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-06-30 10:47:22 UTC
  • mfrom: (6973.9.5 python3-h)
  • Revision ID: breezy.the.bot@gmail.com-20180630104722-b2dwuvyepexok616
Fix some more tests on python3.

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

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
        wt = self.make_branch_and_tree('b1')
35
35
        b = wt.branch
36
36
        tt = TreeTransform(wt)
37
 
        tt.new_file('a', tt.root, b'a test\n', self.a_id, True)
38
 
        tt.new_file('b', tt.root, b'b test\n', self.b_id, False)
 
37
        tt.new_file('a', tt.root, [b'a test\n'], self.a_id, True)
 
38
        tt.new_file('b', tt.root, [b'b test\n'], self.b_id, False)
39
39
        tt.apply()
40
40
 
41
41
        self.wt = wt