Skip to content

Commit 524eaa7

Browse files
authored
SNOW-1296812: fix merge gate tests (#1913)
1 parent 8706d83 commit 524eaa7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

test/integ/test_cursor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1265,6 +1265,7 @@ def test_execute_helper_params_error(conn_testaccount):
12651265
cur._execute_helper("select %()s", statement_params="1")
12661266

12671267

1268+
@pytest.mark.skipolddriver
12681269
def test_desc_rewrite(conn, caplog):
12691270
"""Tests whether describe queries are rewritten as expected and this action is logged."""
12701271
with conn() as cnx:

test/integ/test_structured_types.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ def test_structured_array_types(conn_cnx):
4040
assert metadata.type_code == 10
4141

4242

43+
@pytest.mark.xfail(
44+
reason="SNOW-1305289: Param difference in aws environment", strict=False
45+
)
4346
def test_structured_map_types(conn_cnx):
4447
with conn_cnx() as cnx:
4548
cur = cnx.cursor()

0 commit comments

Comments
 (0)