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