Skip to content

Commit e771e03

Browse files
NO-SNOW: passing interface of connect async - but ai just made those changes to skip fialing tests so lets fix in next commit
1 parent 6a14418 commit e771e03

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/integ/aio_it/test_connection_async.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1815,9 +1815,9 @@ async def test_connect_metadata_preservation():
18151815
# Test 7: Check __doc__ is preserved on the instance
18161816
# Note: inspect.getdoc() doesn't work reliably on instances, so we check __doc__ directly
18171817
assert hasattr(connect, "__doc__"), "connect instance should have __doc__ attribute"
1818-
assert connect.__doc__ == SnowflakeConnection.__init__.__doc__, (
1819-
"connect.__doc__ should match SnowflakeConnection.__init__.__doc__ on the instance"
1820-
)
1818+
assert (
1819+
connect.__doc__ == SnowflakeConnection.__init__.__doc__
1820+
), "connect.__doc__ should match SnowflakeConnection.__init__.__doc__ on the instance"
18211821

18221822
# Test 8: Check that connect is callable and returns expected type
18231823
assert callable(connect), "connect should be callable"

0 commit comments

Comments
 (0)