From 7b58eb03474322de39c1ea89393fa486b50293bf Mon Sep 17 00:00:00 2001 From: Adam Ling Date: Mon, 26 Aug 2024 10:06:54 -0700 Subject: [PATCH] SNOW-1638059: fix daily precommit failure test (#2158) --- tests/integ/scala/test_async_job_suite.py | 7 ------- tests/integ/test_cte.py | 1 - 2 files changed, 8 deletions(-) diff --git a/tests/integ/scala/test_async_job_suite.py b/tests/integ/scala/test_async_job_suite.py index 6c7027d8d7d..347086971e0 100644 --- a/tests/integ/scala/test_async_job_suite.py +++ b/tests/integ/scala/test_async_job_suite.py @@ -371,13 +371,6 @@ def test_async_is_running_and_cancel(session): assert async_job2.is_done() -@pytest.mark.skipif(IS_IN_STORED_PROC_LOCALFS, reason="Requires large result") -def test_async_place_holder(session): - exp = session.sql("show functions").where("1=1").collect() - async_job = session.sql("show functions").where("1=1").collect_nowait() - Utils.check_answer(async_job.result(), exp) - - @pytest.mark.skipif(not is_pandas_available, reason="pandas is not available") @pytest.mark.parametrize("create_async_job_from_query_id", [True, False]) def test_create_async_job(session, create_async_job_from_query_id): diff --git a/tests/integ/test_cte.py b/tests/integ/test_cte.py index 9345d0528fd..6aa115afcc2 100644 --- a/tests/integ/test_cte.py +++ b/tests/integ/test_cte.py @@ -371,7 +371,6 @@ def test_table(session): [ "select 1 as a, 2 as b", "show tables in schema limit 10", - "describe result last_query_id()", ], ) def test_sql(session, query):