Skip to content

Commit fb3e4b8

Browse files
feat(v2/appconfigdata): wording + variable name
1 parent 610e2a6 commit fb3e4b8

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

tests/functional/test_utilities_parameters.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1640,15 +1640,15 @@ def test_appconf_provider_get_configuration_json_content_type(mock_name, config)
16401640
mock_value = StreamingBody(BytesIO(encoded_message), len(encoded_message))
16411641

16421642
stubber = stub.Stubber(provider.client)
1643-
response_start = {"InitialConfigurationToken": "initial_token"}
1644-
stubber.add_response("start_configuration_session", response_start)
1643+
response_start_config_session = {"InitialConfigurationToken": "initial_token"}
1644+
stubber.add_response("start_configuration_session", response_start_config_session)
16451645

1646-
response_latest = {
1646+
response_get_latest_config = {
16471647
"Configuration": mock_value,
16481648
"NextPollConfigurationToken": "initial_token",
16491649
"ContentType": "application/json",
16501650
}
1651-
stubber.add_response("get_latest_configuration", response_latest)
1651+
stubber.add_response("get_latest_configuration", response_get_latest_config)
16521652
stubber.activate()
16531653

16541654
try:
@@ -1679,15 +1679,15 @@ def test_appconf_provider_get_configuration_json_content_type_with_custom_client
16791679
mock_value = StreamingBody(BytesIO(encoded_message), len(encoded_message))
16801680

16811681
stubber = stub.Stubber(provider.client)
1682-
response_start = {"InitialConfigurationToken": "initial_token"}
1683-
stubber.add_response("start_configuration_session", response_start)
1682+
response_start_config_session = {"InitialConfigurationToken": "initial_token"}
1683+
stubber.add_response("start_configuration_session", response_start_config_session)
16841684

1685-
response_latest = {
1685+
response_get_latest_config = {
16861686
"Configuration": mock_value,
16871687
"NextPollConfigurationToken": "initial_token",
16881688
"ContentType": "application/json",
16891689
}
1690-
stubber.add_response("get_latest_configuration", response_latest)
1690+
stubber.add_response("get_latest_configuration", response_get_latest_config)
16911691
stubber.activate()
16921692

16931693
try:
@@ -1716,15 +1716,15 @@ def test_appconf_provider_get_configuration_no_transform(mock_name, config):
17161716
mock_value = StreamingBody(BytesIO(encoded_message), len(encoded_message))
17171717

17181718
stubber = stub.Stubber(provider.client)
1719-
response_start = {"InitialConfigurationToken": "initial_token"}
1720-
stubber.add_response("start_configuration_session", response_start)
1719+
response_start_config_session = {"InitialConfigurationToken": "initial_token"}
1720+
stubber.add_response("start_configuration_session", response_start_config_session)
17211721

1722-
response_latest = {
1722+
response_get_latest_config = {
17231723
"Configuration": mock_value,
17241724
"NextPollConfigurationToken": "initial_token",
17251725
"ContentType": "application/json",
17261726
}
1727-
stubber.add_response("get_latest_configuration", response_latest)
1727+
stubber.add_response("get_latest_configuration", response_get_latest_config)
17281728
stubber.activate()
17291729

17301730
try:

0 commit comments

Comments
 (0)