We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d4159 commit 6d66f96Copy full SHA for 6d66f96
test/integ/test_dbapi.py
@@ -857,7 +857,8 @@ def test_callproc_invalid(conn_cnx):
857
# stored procedure does not exist
858
with pytest.raises(errors.ProgrammingError) as pe:
859
cur.callproc(name_sp)
860
- assert pe.value.errno == 2140
+ # this value might differ between Snowflake environments
861
+ assert pe.value.errno in [2140, 2139]
862
863
cur.execute(
864
f"""
0 commit comments