summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-04-22 18:31:11 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-04-22 18:31:11 +0200
commit819c4ed8b443baee06472680f8d36022cb9c3240 (patch)
treee65c8014ff73048cd063cfa1eccb0f995f63d22e
parentc883d129066f0aa11d806f123ef0ef1321262367 (diff)
downloadgitpython-819c4ed8b443baee06472680f8d36022cb9c3240.tar.gz
Fix assertion2.0.0
Who would have thought we ever go 2.0 ;).
-rw-r--r--git/test/test_docs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/test_docs.py b/git/test/test_docs.py
index 985938e5..189cdc43 100644
--- a/git/test/test_docs.py
+++ b/git/test/test_docs.py
@@ -94,7 +94,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('1')
+ assert (now.commit.tree / 'VERSION').data_stream.read().decode('ascii').startswith('2')
# You can traverse trees as well to handle all contained files of a particular commit
file_count = 0