diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2015-04-16 09:12:26 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2015-04-16 09:12:26 +0200 |
commit | 8c6d952b17e63c92a060c08eac38165c6fafa869 (patch) | |
tree | f9977c8be53ad1585ea9d7c488ba2b8dd529eb05 /git/test | |
parent | e129846a1a5344c8d7c0abe5ec52136c3a581cce (diff) | |
parent | abd23a37d8b93721c0e58e8c133cef26ed5ba1f0 (diff) | |
download | gitpython-8c6d952b17e63c92a060c08eac38165c6fafa869.tar.gz |
Merge branch 'matt-jordan-remote_source'
Diffstat (limited to 'git/test')
-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 586f0ce4..5b8aa817 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('0') + assert (now.commit.tree / 'VERSION').data_stream.read().decode('ascii').startswith('1') # You can traverse trees as well to handle all contained files of a particular commit file_count = 0 |