/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: Jelmer Vernooij
  • Date: 2018-06-18 02:13:57 UTC
  • mto: (6973.12.2 python3-k)
  • mto: This revision was merged to the branch mainline in revision 7004.
  • Revision ID: jelmer@jelmer.uk-20180618021357-xz802zqfmrf7zv1z
More test fixes.

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