Skip to content

Commit 012eed6

Browse files
Code review
1 parent ade1ccc commit 012eed6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/integ/aio_it/test_dbapi_async.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -881,7 +881,8 @@ async def test_callproc_invalid(conn_cnx):
881881
# stored procedure does not exist
882882
with pytest.raises(errors.ProgrammingError) as pe:
883883
await cur.callproc(name_sp)
884-
assert pe.value.errno == 2140
884+
# this value might differ between Snowflake environments
885+
assert pe.value.errno in [2140, 2139]
885886

886887
await cur.execute(
887888
f"""

test/integ/aio_it/test_load_unload_async.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ def connection():
3939
return conn_cnx(
4040
user=db_parameters["user"],
4141
account=db_parameters["account"],
42-
password=db_parameters["password"],
4342
)
4443

4544
return create_test_data(request, db_parameters, connection)

0 commit comments

Comments
 (0)