This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch 2.6.x
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/2.6.x by this push:
new 428c5b8 ARTEMIS-2144 fixing TransactionManagerLocatorTest
428c5b8 is described below
commit 428c5b8fa895b0640498b2a0aa599b9fa00ac5ee
Author: andytaylor <[email protected]>
AuthorDate: Thu Jan 10 10:43:35 2019 +0000
ARTEMIS-2144 fixing TransactionManagerLocatorTest
(cherry picked from commit 13e410dbee01c397654140bf0d7dda9b05fe7040)
---
.../artemis/tests/util/transactions/TransactionManagerLocatorTest.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/util/transactions/TransactionManagerLocatorTest.java
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/util/transactions/TransactionManagerLocatorTest.java
index b0d9969..e74061f 100644
---
a/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/util/transactions/TransactionManagerLocatorTest.java
+++
b/tests/integration-tests/src/test/java/org/apache/activemq/artemis/tests/util/transactions/TransactionManagerLocatorTest.java
@@ -25,6 +25,6 @@ public class TransactionManagerLocatorTest extends Assert {
@Test
public void getTM() {
assertNotNull(ServiceUtils.getTransactionManager());
- assertEquals(ServiceUtils.getTransactionManager().getClass(),
DummyTransactionManagerLocator.class);
+
assertEquals(org.apache.activemq.artemis.tests.integration.ra.DummyTransactionManager.class,
ServiceUtils.getTransactionManager().getClass());
}
}