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

fix tests to use new CommitCommand constructor

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
                yield commands.FileModifyCommand(old_path, 'file', False,
47
47
                        None, "aaa")
48
48
            yield commands.CommitCommand('head', '1', author,
49
 
                committer, "commit 1", [], files_one)
 
49
                committer, "commit 1", None, [], files_one)
50
50
            def files_two():
51
51
                yield commands.FileRenameCommand(old_path, new_path)
52
52
            yield commands.CommitCommand('head', '2', author,
53
 
                committer, "commit 2", [":1"], files_two)
 
53
                committer, "commit 2", ":1", [], files_two)
54
54
        return command_list
55
55
 
56
56
    # FIXME: [] as a default is bad, as it is mutable, but I want