We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f370a0 commit f5c1935Copy full SHA for f5c1935
1 file changed
sdk/python/tests/integration/e2e/test_universal_e2e.py
@@ -44,12 +44,16 @@ def check_offline_and_online_features(
44
45
if full_feature_names:
46
if expected_value:
47
- assert abs(response_dict[f"{fv.name}__value"][0] - expected_value) < 1e-6
+ assert (
48
+ abs(response_dict[f"{fv.name}__value"][0] - expected_value) < 1e-6
49
+ ), f"Response: {response_dict}, Expected: {expected_value}"
50
else:
51
assert response_dict[f"{fv.name}__value"][0] is None
52
53
- assert abs(response_dict["value"][0] - expected_value) < 1e-6
54
55
+ abs(response_dict["value"][0] - expected_value) < 1e-6
56
57
58
assert response_dict["value"][0] is None
59
0 commit comments