We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3eb497b commit f6cf7a7Copy full SHA for f6cf7a7
git/test/test_docs.py
@@ -289,9 +289,9 @@ def test_references_and_objects(self, rw_dir):
289
assert len(headcommit.hexsha) == 40
290
assert len(headcommit.parents) > 0
291
assert headcommit.tree.type == 'tree'
292
- assert headcommit.author.name == 'Sebastian Thiel'
+ assert len(headcommit.author.name) != 0
293
assert isinstance(headcommit.authored_date, int)
294
- assert headcommit.committer.name == 'Sebastian Thiel'
+ assert len(headcommit.committer.name) != 0
295
assert isinstance(headcommit.committed_date, int)
296
assert headcommit.message != ''
297
# ![14-test_references_and_objects]
0 commit comments