From c722b3a188a912690fd5256d2722d5a482f77d7d Mon Sep 17 00:00:00 2001 From: ggydush Date: Tue, 26 Mar 2024 20:52:22 -0700 Subject: [PATCH] fix: Fix again Signed-off-by: ggydush --- tests/flytekit/unit/core/test_type_engine.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/flytekit/unit/core/test_type_engine.py b/tests/flytekit/unit/core/test_type_engine.py index 95b79180b6..e5c4ad2acc 100644 --- a/tests/flytekit/unit/core/test_type_engine.py +++ b/tests/flytekit/unit/core/test_type_engine.py @@ -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), ],