summaryrefslogtreecommitdiff
path: root/git/test/test_docs.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2017-09-28 15:17:25 +0200
committerGitHub <noreply@github.com>2017-09-28 15:17:25 +0200
commit58998fb2dd6a1cad5faffdc36ae536ee6b04e3d2 (patch)
tree4f5c342b1c20b23a5bc73eb74855c4bb81f2c197 /git/test/test_docs.py
parent251128d41cdf39a49468ed5d997cc1640339ccbc (diff)
parent2af601d5800a39ab04e9fe6cf22ef7b917ab5d67 (diff)
downloadgitpython-58998fb2dd6a1cad5faffdc36ae536ee6b04e3d2.tar.gz
Merge branch 'master' into master
Diffstat (limited to 'git/test/test_docs.py')
-rw-r--r--git/test/test_docs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/git/test/test_docs.py b/git/test/test_docs.py
index cbbd9447..1ba3f482 100644
--- a/git/test/test_docs.py
+++ b/git/test/test_docs.py
@@ -289,9 +289,9 @@ class Tutorials(TestBase):
assert len(headcommit.hexsha) == 40
assert len(headcommit.parents) > 0
assert headcommit.tree.type == 'tree'
- assert headcommit.author.name == 'Sebastian Thiel'
+ assert len(headcommit.author.name) != 0
assert isinstance(headcommit.authored_date, int)
- assert headcommit.committer.name == 'Sebastian Thiel'
+ assert len(headcommit.committer.name) != 0
assert isinstance(headcommit.committed_date, int)
assert headcommit.message != ''
# ![14-test_references_and_objects]