Skip to content

Commit

Permalink
[CI] When using the darwin-framework-backend, if the name of the fiel…
Browse files Browse the repository at this point in the history
…d in the response if the same as the expected name do not delete it
  • Loading branch information
vivien-apple committed Feb 5, 2024
1 parent b1bf11e commit b6b6d59
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ def run(self, specs, value, cluster_name: str, typename: str, array: bool):
provided_field_name = provided_field_name[0].lower(
) + provided_field_name[1:]

if provided_field_name in value:
if provided_field_name in value and provided_field_name != field_name:
value[field_name] = self.run(
specs,
value[provided_field_name],
Expand Down

0 comments on commit b6b6d59

Please sign in to comment.