From d2d1bb4defdc3e0c2d4d569a6f16898a6ffa62f5 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 19 May 2019 18:22:47 +0200 Subject: [PATCH] Raise a speed limit a bit to avoid false positives --- test/test_speed.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_speed.py b/test/test_speed.py index 40c7cf16..ba5784ac 100644 --- a/test/test_speed.py +++ b/test/test_speed.py @@ -30,7 +30,7 @@ def _check_speed(time_per_run, number=4, run_warm=True): return decorated -@_check_speed(0.4) +@_check_speed(0.5) def test_os_path_join(Script): s = "from posixpath import join; join('', '')." assert len(Script(s).completions()) > 10 # is a str completion