Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -73,14 +73,14 @@ def test_get_feature_states_for_identity__mv_percentage_allocation__returns_corr
create_mv_option_with_api(
admin_client,
project,
multivariate_feature_id, # type: ignore[arg-type]
multivariate_feature_id,
variant_1_percentage_allocation,
variant_1_value,
)
variant_2_mvfo_id = create_mv_option_with_api(
admin_client,
project,
multivariate_feature_id, # type: ignore[arg-type]
multivariate_feature_id,
variant_2_percentage_allocation,
variant_2_value,
)
Expand Down Expand Up @@ -193,15 +193,15 @@ def test_get_feature_states_for_identity__mv_allocation__returns_variant( # typ
create_mv_option_with_api(
admin_client,
project,
multivariate_feature_id, # type: ignore[arg-type]
multivariate_feature_id,
variant_1_percentage_allocation,
variant_1_value,
key="variant-1",
)
create_mv_option_with_api(
admin_client,
project,
multivariate_feature_id, # type: ignore[arg-type]
multivariate_feature_id,
variant_2_percentage_allocation,
variant_2_value,
key="variant-2",
Expand Down Expand Up @@ -242,7 +242,7 @@ def test_get_flags__multivariate_feature__response_excludes_variant( # type: ig
create_mv_option_with_api(
admin_client,
project,
multivariate_feature_id, # type: ignore[arg-type]
multivariate_feature_id,
100,
variant_1_value,
key="variant-1",
Expand Down Expand Up @@ -279,14 +279,14 @@ def test_get_feature_states_for_identity__multiple_mv_features__single_mv_query(
create_mv_option_with_api(
admin_client,
project,
feature_id, # type: ignore[arg-type]
feature_id,
variant_1_percentage_allocation,
variant_1_value,
)
create_mv_option_with_api(
admin_client,
project,
feature_id, # type: ignore[arg-type]
feature_id,
variant_2_percentage_allocation,
variant_2_value,
)
Expand Down Expand Up @@ -314,14 +314,14 @@ def test_get_feature_states_for_identity__multiple_mv_features__single_mv_query(
create_mv_option_with_api(
admin_client,
project,
feature_id, # type: ignore[arg-type]
feature_id,
variant_1_percentage_allocation,
variant_1_value,
)
create_mv_option_with_api(
admin_client,
project,
feature_id, # type: ignore[arg-type]
feature_id,
variant_2_percentage_allocation,
variant_2_value,
)
Expand Down
Empty file.
Loading
Loading