From 819c4ed8b443baee06472680f8d36022cb9c3240 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Fri, 22 Apr 2016 18:31:11 +0200 Subject: Fix assertion Who would have thought we ever go 2.0 ;). --- git/test/test_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/test/test_docs.py') 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 -- cgit v1.2.1