aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2012-01-10 20:28:04 +0100
committerGuido Günther <agx@sigxcpu.org>2012-01-10 20:30:46 +0100
commitb956ebfc138422aecb0e0dec0a603c3b8316a12e (patch)
tree34bd66c71078bc96402a21e5a85c1b1b8e6d1516 /tests
parent3d4adca7af78280b66750412633774a478e20465 (diff)
GitRepository.branch_contains: fix misplaced remote parameter
Diffstat (limited to 'tests')
-rw-r--r--tests/test_GitRepository.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_GitRepository.py b/tests/test_GitRepository.py
index 50b733db..7eaae1e3 100644
--- a/tests/test_GitRepository.py
+++ b/tests/test_GitRepository.py
@@ -117,6 +117,8 @@ def test_create_branch():
>>> repo.create_branch("foo")
>>> repo.branch_contains("foo", 'HEAD')
True
+ >>> repo.branch_contains("doesnotexist", 'HEAD', remote=True)
+ False
"""
def test_delete_branch():