Skip to content

Commit 00b4d31

Browse files
committed
chore: Fix deprecation warning
1 parent 891f36d commit 00b4d31

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wafp/fuzzers/catalog/schemathesis/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ def validate_response(self, response, case, additional_checks=()):
158158
)
159159
160160
TestCase = APIWorkflow.TestCase
161-
TestCase.settings = settings(max_examples={self.max_examples}, suppress_health_check=HealthCheck.all(), deadline=None)
161+
TestCase.settings = settings(max_examples={self.max_examples}, suppress_health_check=list(HealthCheck), deadline=None)
162162
"""
163163
)
164164
)

0 commit comments

Comments
 (0)