Skip to content

Commit

Permalink
Merge pull request apache#32851 Fix failing YAML mapping IT
Browse files Browse the repository at this point in the history
  • Loading branch information
robertwb authored Oct 18, 2024
2 parents 3b839d1 + ef6caf4 commit a163dd0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions sdks/python/apache_beam/yaml/tests/map.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ pipelines:
config:
append: true
fields:
named_field: element
# TODO(https://github.com/apache/beam/issues/32832): Figure out why Java sometimes re-orders these fields.
literal_int: 10
named_field: element
literal_float: 1.5
literal_str: '"abc"'

Expand All @@ -42,5 +43,5 @@ pipelines:
- type: AssertEqual
config:
elements:
- {element: 100, named_field: 100, literal_int: 10, literal_float: 1.5, literal_str: "abc"}
- {element: 200, named_field: 200, literal_int: 10, literal_float: 1.5, literal_str: "abc"}
- {element: 100, literal_int: 10, named_field: 100, literal_float: 1.5, literal_str: "abc"}
- {element: 200, literal_int: 10, named_field: 200, literal_float: 1.5, literal_str: "abc"}

0 comments on commit a163dd0

Please sign in to comment.