diff options
author | Sebastian Thiel <sthiel@thoughtworks.com> | 2019-08-11 14:56:39 +0800 |
---|---|---|
committer | Sebastian Thiel <sthiel@thoughtworks.com> | 2019-08-11 14:56:39 +0800 |
commit | 326409d7afd091c693f3c931654b054df6997d97 (patch) | |
tree | 1e84297b54c02dc87ce91ec7f2346377930aedc4 | |
parent | 71bd08050c122eff2a7b6970ba38564e67e33760 (diff) | |
download | gitpython-326409d7afd091c693f3c931654b054df6997d97.tar.gz |
Fix test bound to major version
-rw-r--r-- | git/test/test_docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_docs.py b/git/test/test_docs.py index 770f78e2..c14f5ff3 100644 --- a/git/test/test_docs.py +++ b/git/test/test_docs.py @@ -106,7 +106,7 @@ class Tutorials(TestBase): # [11-test_init_repo_object] assert now.commit.message != past.commit.message # You can read objects directly through binary streams, no working tree required - assert (now.commit.tree / 'VERSION').data_stream.read().decode('ascii').startswith('2') + assert (now.commit.tree / 'VERSION').data_stream.read().decode('ascii').startswith('3') # You can traverse trees as well to handle all contained files of a particular commit file_count = 0 |