summaryrefslogtreecommitdiff
path: root/tests/test_GitVfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_GitVfs.py')
-rw-r--r--tests/test_GitVfs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_GitVfs.py b/tests/test_GitVfs.py
index 8e04954..8fec765 100644
--- a/tests/test_GitVfs.py
+++ b/tests/test_GitVfs.py
@@ -28,7 +28,7 @@ def test_read():
>>> repo = gbp.git.GitRepository.create(str(repo_dir))
>>> f = open(os.path.join(repo.path, 'foo.txt'), 'w')
>>> content = 'al pha\\na\\nb\\nc'
- >>> f.write('al pha\\na\\nb\\nc')
+ >>> ret = f.write('al pha\\na\\nb\\nc')
>>> f.close()
>>> repo.add_files(repo.path, force=True)
>>> repo.commit_all(msg="foo")