/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/blackbox/test_pack.py

Merge test-run support.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
        self._make_file(path, line_prefix, total_lines, versioned=True)
29
29
 
30
30
    def _make_file(self, path, line_prefix, total_lines, versioned):
31
 
        text = ''
 
31
        text=''
32
32
        for i in range(total_lines):
33
 
            text += line_prefix + str(i + 1) + "\n"
 
33
            text += line_prefix + str(i+1) + "\n"
34
34
 
35
35
        with open(path, 'w') as f:
36
36
            f.write(text)