/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_mapping.py

Fix some tests now that working trees are supported.

Show diffs side-by-side

added added

removed removed

Lines of Context:
114
114
        c = Commit()
115
115
        c._tree = "cc9462f7f8263ef5adfbeff2fb936bb36b504cba"
116
116
        c._message = "Some message"
117
 
        c._committer = "Committer"
 
117
        c._committer = "Committer <Committer>"
118
118
        c._commit_time = 4
119
119
        c._commit_timezone = -0500
120
120
        c._author_time = 5
121
121
        c._author_timezone = 0600
122
 
        c._author = "Author"
 
122
        c._author = "Author <author>"
123
123
        self.assertRoundtripCommit(c)
124
124