From 8ca92671289360c9bd4b7ee4f71efe545b2bb642 Mon Sep 17 00:00:00 2001 From: David Ankin Date: Wed, 13 Mar 2024 23:28:01 -0400 Subject: [PATCH] fix postgres doctest --- modules/postgres/testcontainers/postgres/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/postgres/testcontainers/postgres/__init__.py b/modules/postgres/testcontainers/postgres/__init__.py index 83354e07..fd537f92 100644 --- a/modules/postgres/testcontainers/postgres/__init__.py +++ b/modules/postgres/testcontainers/postgres/__init__.py @@ -45,7 +45,7 @@ class PostgresContainer(DbContainer): ... result = connection.execute(sqlalchemy.text("select version()")) ... version, = result.fetchone() >>> version - 'PostgreSQL 9.5...' + 'PostgreSQL 16...' """ def __init__(