Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael SMADJA committed Mar 29, 2024
1 parent 4e488bf commit f606917
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/OpenApiLibCore/openapi_libcore.py
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ def __init__( # pylint: disable=too-many-arguments, too-many-locals, dangerous-
self.cookies = cookies
self.proxies = proxies
self.invalid_property_default_response = invalid_property_default_response
self.log_suite_varariables = log_suite_variables
self.log_suite_variables = log_suite_variables
if mappings_path and str(mappings_path) != ".":
mappings_path = Path(mappings_path)
if not mappings_path.is_file():
Expand Down Expand Up @@ -554,7 +554,7 @@ def __init__( # pylint: disable=too-many-arguments, too-many-locals, dangerous-
DEFAULT_ID_PROPERTY_NAME.id_property_name = default_id_property_name

def append_to_suite_variable(self, var_name: str, value: Any) -> None:
if self.log_suite_varariables:
if self.log_suite_variables:
builtin = BuiltIn()
var_list: List[Any] = builtin.get_variable_value(f"${{{var_name}}}", [])
var_list.append(value)
Expand Down

0 comments on commit f606917

Please sign in to comment.