From e93d054a4c5211b1a84b3bc6c933ee81a8877848 Mon Sep 17 00:00:00 2001 From: Afroz Alam Date: Fri, 29 Sep 2023 17:45:56 +0000 Subject: [PATCH] SNOW-754087: Remove xfail from if_not_exists tests (#1065) --- 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 c74774f3c86..4a22e044c44 100644 --- a/tests/integ/test_stored_procedure.py +++ b/tests/integ/test_stored_procedure.py @@ -1088,7 +1088,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 441c17a7bb7..ee4d0d3b7cc 100644 --- a/tests/integ/test_udf.py +++ b/tests/integ/test_udf.py @@ -1365,7 +1365,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 0206abf5d8a..f235a0486d3 100644 --- a/tests/integ/test_udtf.py +++ b/tests/integ/test_udtf.py @@ -418,7 +418,6 @@ def process( Utils.drop_stage(session, stage_name) -@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" )