Skip to content

Commit

Permalink
make test timeout stricter
Browse files Browse the repository at this point in the history
  • Loading branch information
sroet authored and Byron committed Sep 18, 2021
1 parent 4151470 commit 42b05b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/test_remote.py
Expand Up @@ -663,5 +663,5 @@ def test_timeout_funcs(self, repo):
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)

0 comments on commit 42b05b0

Please sign in to comment.