summaryrefslogtreecommitdiff
path: root/tests/test_parse_bytes_function.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_parse_bytes_function.py')
-rw-r--r--tests/test_parse_bytes_function.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/test_parse_bytes_function.py b/tests/test_parse_bytes_function.py
index 94e00cb..49f54ae 100644
--- a/tests/test_parse_bytes_function.py
+++ b/tests/test_parse_bytes_function.py
@@ -3,7 +3,7 @@
from __future__ import unicode_literals
import pytest
-from hypothesis import HealthCheck, given, settings
+from hypothesis import given
from hypothesis.strategies import binary
from natsort.ns_enum import ns
from natsort.utils import parse_bytes_factory
@@ -19,8 +19,7 @@ from natsort.utils import parse_bytes_factory
(ns.PATH | ns.IGNORECASE, lambda x: ((x.lower(),),)),
],
)
-@settings(suppress_health_check=[HealthCheck.too_slow])
@given(x=binary())
-def test_parse_bytes_factory_makes_function_that_returns_tuple(x, alg, example_func):
+def test_parse_bytest_factory_makes_function_that_returns_tuple(x, alg, example_func):
parse_bytes_func = parse_bytes_factory(alg)
assert parse_bytes_func(x) == example_func(x)