File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments