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" )