From 2fcc9212d55f93cc55b9e186b2225af9d767551a Mon Sep 17 00:00:00 2001 From: Afroz Alam Date: Wed, 27 Sep 2023 15:22:41 -0700 Subject: [PATCH] SNOW-754087: Remove xfail from if_not_exists tests --- tests/integ/test_stored_procedure.py | 1 - tests/integ/test_udf.py | 1 - tests/integ/test_udtf.py | 1 - 3 files changed, 3 deletions(-) diff --git a/tests/integ/test_stored_procedure.py b/tests/integ/test_stored_procedure.py index c80e1ae871a..8726a2bc371 100644 --- a/tests/integ/test_stored_procedure.py +++ b/tests/integ/test_stored_procedure.py @@ -1019,7 +1019,6 @@ def test_sp_replace(session): assert add_sp(1, 2) == 3 -@pytest.mark.xfail(reason="SNOW-757054 flaky test", strict=False) @pytest.mark.skipif( IS_IN_STORED_PROC, reason="Named temporary procedure is not supported in stored proc", diff --git a/tests/integ/test_udf.py b/tests/integ/test_udf.py index 8b2f1b10bc5..f39e7c82786 100644 --- a/tests/integ/test_udf.py +++ b/tests/integ/test_udf.py @@ -1368,7 +1368,6 @@ def test_udf_replace(session): ) -@pytest.mark.xfail(reason="SNOW-757054 flaky test", strict=False) @pytest.mark.skipif( IS_IN_STORED_PROC, reason="Named temporary udf is not supported in stored proc" ) diff --git a/tests/integ/test_udtf.py b/tests/integ/test_udtf.py index db301f08e0b..96f12758ede 100644 --- a/tests/integ/test_udtf.py +++ b/tests/integ/test_udtf.py @@ -422,7 +422,6 @@ def process( new_session._run_query(f"drop function if exists {udtf_name}(int)") -@pytest.mark.xfail(reason="SNOW-757054 flaky test", strict=False) @pytest.mark.skipif( IS_IN_STORED_PROC, reason="Named temporary udf is not supported in stored proc" )