This is an automated email from the ASF dual-hosted git repository.
veithen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-axiom.git
The following commit(s) were added to refs/heads/master by this push:
new 4eda38bfb Make CrossOMTestCase extend MatrixTestCase directly
4eda38bfb is described below
commit 4eda38bfb73b38074aeb459812a020c4cbad1e5c
Author: Andreas Veithen-Knowles <[email protected]>
AuthorDate: Sun Mar 8 05:10:19 2026 +0000
Make CrossOMTestCase extend MatrixTestCase directly
---
.../main/java/org/apache/axiom/ts/om/cross/CrossOMTestCase.java | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git
a/testing/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/cross/CrossOMTestCase.java
b/testing/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/cross/CrossOMTestCase.java
index 933eedfa5..7ddf7e45e 100644
---
a/testing/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/cross/CrossOMTestCase.java
+++
b/testing/axiom-testsuite/src/main/java/org/apache/axiom/ts/om/cross/CrossOMTestCase.java
@@ -19,13 +19,14 @@
package org.apache.axiom.ts.om.cross;
import org.apache.axiom.om.OMMetaFactory;
-import org.apache.axiom.ts.AxiomTestCase;
+import org.apache.axiom.testutils.suite.MatrixTestCase;
-public abstract class CrossOMTestCase extends AxiomTestCase {
+public abstract class CrossOMTestCase extends MatrixTestCase {
+ protected final OMMetaFactory metaFactory;
protected final OMMetaFactory altMetaFactory;
public CrossOMTestCase(OMMetaFactory metaFactory, OMMetaFactory
altMetaFactory) {
- super(metaFactory);
+ this.metaFactory = metaFactory;
this.altMetaFactory = altMetaFactory;
}
}