Skip to content

Commit cfe62be

Browse files
Fix conflicts
2 parents 0289c03 + 910ef0b commit cfe62be

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/test_optimizely.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,7 @@ def test_get_feature_variable_integer_for_feature_in_rollout(self):
23982398
)
23992399

24002400
def test_get_feature_variable_string_for_feature_in_rollout(self):
2401-
""" Test that get_feature_variable_string returns String value as expected \
2401+
""" Test that get_feature_variable_double returns Double value as expected \
24022402
and broadcasts decision with proper parameters. """
24032403

24042404
opt_obj = optimizely.Optimizely(json.dumps(self.config_dict_with_features))
@@ -2801,6 +2801,8 @@ def test_get_feature_variable__returns_default_value_if_no_variation(self):
28012801
}
28022802
)
28032803

2804+
mock_client_logger.info.reset_mock()
2805+
28042806
# Non-typed
28052807
with mock.patch('optimizely.decision_service.DecisionService.get_variation_for_feature',
28062808
return_value=decision_service.Decision(None, None,

0 commit comments

Comments
 (0)