summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsroet <sanderroet@hotmail.com>2021-09-14 13:30:33 +0200
committerSebastian Thiel <sebastian.thiel@icloud.com>2021-09-18 09:26:28 +0800
commit42b05b0f5f3ae7ddd0590a42fd120ffdf2b34903 (patch)
treeea398d79d22e7b89799ac830c596e4f43c5c0684
parent415147046b6950cdc1812dce076a4de78eead162 (diff)
downloadgitpython-42b05b0f5f3ae7ddd0590a42fd120ffdf2b34903.tar.gz
make test timeout stricter
-rw-r--r--test/test_remote.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_remote.py b/test/test_remote.py
index 10f0bb4b..8f020664 100644
--- a/test/test_remote.py
+++ b/test/test_remote.py
@@ -663,5 +663,5 @@ class TestTimeouts(TestBase):
assert f is not None # Make sure these functions exist
_ = f() # Make sure the function runs
with pytest.raises(GitCommandError,
- match="kill_after_timeout=0.01 s"):
- f(kill_after_timeout=0.01)
+ match="kill_after_timeout=0 s"):
+ f(kill_after_timeout=0)