You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/06/23 10:04:49 UTC

[tomee] branch TOMEE-3800 updated: TOMEE-3800 - DBCP 2.9.0

This is an automated email from the ASF dual-hosted git repository.

rzo1 pushed a commit to branch TOMEE-3800
in repository https://gitbox.apache.org/repos/asf/tomee.git


The following commit(s) were added to refs/heads/TOMEE-3800 by this push:
     new 3bd7f7f221 TOMEE-3800 - DBCP 2.9.0
3bd7f7f221 is described below

commit 3bd7f7f2211b471f1fd729632988eea9fffdbf49
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Thu Jun 23 12:04:39 2022 +0200

    TOMEE-3800 - DBCP 2.9.0
---
 .../src/test/java/org/apache/openejb/resource/jdbc/XAPoolTest.java      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/container/openejb-core/src/test/java/org/apache/openejb/resource/jdbc/XAPoolTest.java b/container/openejb-core/src/test/java/org/apache/openejb/resource/jdbc/XAPoolTest.java
index 6de512878c..c457f631ce 100644
--- a/container/openejb-core/src/test/java/org/apache/openejb/resource/jdbc/XAPoolTest.java
+++ b/container/openejb-core/src/test/java/org/apache/openejb/resource/jdbc/XAPoolTest.java
@@ -94,7 +94,7 @@ public class XAPoolTest {
 
             final Connection connection = c.getMetaData().getConnection(); // just to do something and force the connection init
             assertThat(connection, instanceOf(ManagedConnection.class));
-            assertTrue(connection.toString().contains("URL=jdbc:hsqldb:mem:dbcpxa, UserName=SA, HSQL Database Engine Driver"));
+            assertTrue(connection.toString().contains("URL=jdbc:hsqldb:mem:dbcpxa, HSQL Database Engine Driver"));
         } // here we close the connection so we are back in the initial state
 
         assertEquals(0, tds.getNumActive());