Skip to content

Commit 0521e36

Browse files
committed
Update golden record
1 parent c5f21b5 commit 0521e36

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

end_to_end_tests/golden-record-custom/custom_e2e/models/model_with_any_json_properties.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def _parse_additional_property(
6464
return additional_property
6565
except: # noqa: E722
6666
pass
67-
return cast(str, prop_dict)
68-
return cast(float, prop_dict)
69-
return cast(int, prop_dict)
70-
return cast(bool, prop_dict)
67+
return cast(str, data)
68+
return cast(float, data)
69+
return cast(int, data)
70+
return cast(bool, data)
7171

7272
additional_property = _parse_additional_property(prop_dict)
7373

end_to_end_tests/golden-record/my_test_api_client/models/model_with_any_json_properties.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,10 +64,10 @@ def _parse_additional_property(
6464
return additional_property
6565
except: # noqa: E722
6666
pass
67-
return cast(str, prop_dict)
68-
return cast(float, prop_dict)
69-
return cast(int, prop_dict)
70-
return cast(bool, prop_dict)
67+
return cast(str, data)
68+
return cast(float, data)
69+
return cast(int, data)
70+
return cast(bool, data)
7171

7272
additional_property = _parse_additional_property(prop_dict)
7373

0 commit comments

Comments
 (0)