Skip to content

Commit

Permalink
Added fix for comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun Rathore committed Nov 15, 2024
1 parent 11bb8dc commit c736126
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions tests/testutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,6 @@ def build_mock_condition(name, condition):
return {
'name': name,
'condition': condition,
# ... other relevant fields ...
}

def build_mock_parameter(name, description, value=None,
Expand All @@ -235,32 +234,27 @@ def build_mock_parameter(name, description, value=None,
'conditionalValues': conditional_values,
'defaultValue': default_value,
'parameterGroups': parameter_groups,
# ... other relevant fields ...
}

def build_mock_conditional_value(condition_name, value):
return {
'conditionName': condition_name,
'value': value,
# ... other relevant fields ...
}

def build_mock_default_value(value):
return {
'value': value,
# ... other relevant fields ...
}

def build_mock_parameter_group(name, description, parameters):
return {
'name': name,
'description': description,
'parameters': parameters,
# ... other relevant fields ...
}

def build_mock_version(version_number):
return {
'versionNumber': version_number,
# ... other relevant fields ...
}

0 comments on commit c736126

Please sign in to comment.