From c0f95ab0acf47ca55114475a097c23010e3016e2 Mon Sep 17 00:00:00 2001 From: Pierre-Marie Petit Date: Wed, 11 May 2022 13:36:07 +0200 Subject: [PATCH] service naem in this image is XE, not xe. --- testcontainers/oracle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcontainers/oracle.py b/testcontainers/oracle.py index b8a426445..1fcfdc675 100644 --- a/testcontainers/oracle.py +++ b/testcontainers/oracle.py @@ -22,7 +22,7 @@ def __init__(self, image="wnameless/oracle-xe-11g-r2:latest", **kwargs): def get_connection_url(self): return super()._create_connection_url( dialect="oracle", username="system", password="oracle", port=self.container_port, - db_name="xe" + db_name="XE" ) def _configure(self):