Skip to content

Commit

Permalink
Fix dataclass transformer test
Browse files Browse the repository at this point in the history
Signed-off-by: Eduardo Apolinario <[email protected]>
  • Loading branch information
eapolinario committed Nov 5, 2021
1 parent c703c11 commit 73c79cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/flytekit/unit/core/test_type_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,10 @@ def test_dataclass_transformer():
"InnerstructSchema": {
"additionalProperties": False,
"properties": {
"a": {"format": "integer", "title": "a", "type": "number"},
"a": {"title": "a", "type": "integer"},
"b": {"default": None, "title": "b", "type": ["string", "null"]},
"c": {
"items": {"format": "integer", "title": "c", "type": "number"},
"items": {"title": "c", "type": "integer"},
"title": "c",
"type": "array",
},
Expand Down

0 comments on commit 73c79cb

Please sign in to comment.