commit 8b17e218bea6dbaf43f27d6aa97bafb33e2fb66f
Author: Christoph Berg <myon@debian.org>
Date:   Mon May 29 13:13:08 2023 +0200

    Disable test_ssl_attribute on PG16+
    
    PG15 changed the semantics of some ssl attributes (#1506), and a very
    similar regression test failure has now been observed again with PG16.
    Disable the test for now.

diff --git a/tests/test_connection.py b/tests/test_connection.py
index f9377e23..b1fb315f 100755
--- a/tests/test_connection.py
+++ b/tests/test_connection.py
@@ -1920,6 +1920,7 @@ class TestConnectionInfo(ConnectingTestCase):
             self.conn.info.ssl_attribute('wat')
 
     @skip_before_libpq(9, 5)
+    @skip_after_libpq(16)
     def test_ssl_attribute(self):
         attribs = self.conn.info.ssl_attribute_names
         self.assert_(attribs)
