This is an automated email from the ASF dual-hosted git repository.
clebertsuconic pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/activemq-artemis.git
The following commit(s) were added to refs/heads/master by this push:
new 13e410d ARTEMIS-2144 fixing TransactionManagerLocatorTest
new 7b34b56 This closes #2495
13e410d is described below
commit 13e410dbee01c397654140bf0d7dda9b05fe7040
Author: andytaylor <[email protected]>
AuthorDate: Thu Jan 10 10:43:35 2019 +0000
ARTEMIS-2144 fixing TransactionManagerLocatorTest
---
.../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());
}
}