Skip to content

Commit 3976645

Browse files
changes based on feedback
Signed-off-by: saravanan palanisamy <saravanan30erd@gmail.com>
1 parent ebe9889 commit 3976645

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chaoslib/hypothesis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,7 @@ def _(tolerance: dict, value: Any, configuration: Configuration = None, #noqa:
337337
if "expect" in tolerance and result is False:
338338
expect_one_of = tolerance.get("expect_one_of")
339339
if expect_one_of is not None:
340-
result = values == expect_one_of
340+
result = values == expect_one_of
341341

342342
if result is False:
343343
if "expect" in tolerance and "expect_one_of" in tolerance:

0 commit comments

Comments
 (0)