Skip to content

Commit

Permalink
fix: Fix again
Browse files Browse the repository at this point in the history
Signed-off-by: ggydush <[email protected]>
  • Loading branch information
ggydush committed Mar 27, 2024
1 parent 43ab779 commit c722b3a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/flytekit/unit/core/test_type_engine.py
Original file line number Diff line number Diff line change
Expand Up @@ -2579,9 +2579,9 @@ def test_union_file_directory():
@pytest.mark.parametrize(
"t,expected",
[
(int | str, True),
(int | float | str, True),
(int | None, True),
(int | str, True), # type: ignore
(int | float | str, True), # type: ignore
(int | None, True), # type: ignore
(typing.Union[int, str], False),
(typing.Union[int, None], False),
],
Expand Down

0 comments on commit c722b3a

Please sign in to comment.