From a519d54e7d9d18a178e8f7e3505e76281f2a4262 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 20 Sep 2017 07:40:25 +0200 Subject: [PATCH] Remove hypothesis strict setting It was deprecated as normal python warnings are used now --- tests/conftest.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/conftest.py b/tests/conftest.py index 5533e20ba..b12f85d6e 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -42,8 +42,8 @@ import qutebrowser.app # To register commands # Set hypothesis settings -hypothesis.settings.register_profile( - 'default', hypothesis.settings(strict=True, deadline=400)) +hypothesis.settings.register_profile('default', + hypothesis.settings(deadline=400)) hypothesis.settings.load_profile('default')