From: Mike Bayer Date: Sat, 3 Apr 2021 22:43:47 +0000 (-0400) Subject: unfail test_uuid_array for pg8000 X-Git-Tag: rel_1_4_6~15 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4e0f90424afe03547c21ec3b6365755bb5288075;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git unfail test_uuid_array for pg8000 seems to pass as of pg8000 1.19.1 Change-Id: I1c496b6055fd5dfe0df63f92a4f9363938c32aed --- diff --git a/test/dialect/postgresql/test_types.py b/test/dialect/postgresql/test_types.py index d93f7cc0ac..811c51d19d 100644 --- a/test/dialect/postgresql/test_types.py +++ b/test/dialect/postgresql/test_types.py @@ -2510,7 +2510,7 @@ class UUIDTest(fixtures.TestBase): id_="iaaa", argnames="datatype, value1, value2", ) - @testing.fails_on("postgresql+pg8000", "No support for UUID with ARRAY") + # passes pg8000 as of 1.19.1 def test_uuid_array(self, datatype, value1, value2, connection): self.test_round_trip(datatype, value1, value2, connection)