We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43a65dc commit af304d9Copy full SHA for af304d9
hypothesis-python/src/hypothesis/strategies/_internal/core.py
@@ -83,7 +83,7 @@
83
from hypothesis.internal.conjecture.data import ConjectureData
84
from hypothesis.internal.conjecture.utils import (
85
calc_label_from_callable,
86
- calc_label_from_hash,
+ calc_label_from_name,
87
check_sample,
88
combine_labels,
89
identity,
@@ -1060,7 +1060,7 @@ def calc_label(self) -> int:
1060
self.class_label,
1061
calc_label_from_callable(self.target),
1062
*[strat.label for strat in self.args],
1063
- *[calc_label_from_hash(k) for k in self.kwargs],
+ *[calc_label_from_name(k) for k in self.kwargs],
1064
*[strat.label for strat in self.kwargs.values()],
1065
)
1066
0 commit comments