Skip to content

Commit

Permalink
Quarkus 3: fix patch
Browse files Browse the repository at this point in the history
  • Loading branch information
radtriste committed Jul 31, 2023
1 parent c494d58 commit be098d2
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .ci/environments/quarkus-3/patches/0011_fix_pmml.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
diff --git a/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-api/src/test/java/org/kie/pmml/compiler/api/mocks/TestModel.java b/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-api/src/test/java/org/kie/pmml/compiler/api/mocks/TestModel.java
index 29e0f7b7d0..50a5ce9056 100644
--- a/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-api/src/test/java/org/kie/pmml/compiler/api/mocks/TestModel.java
+++ b/kie-pmml-trusty/kie-pmml-compiler/kie-pmml-compiler-api/src/test/java/org/kie/pmml/compiler/api/mocks/TestModel.java
@@ -53,6 +53,10 @@ public class TestModel extends Model {
return this;
}

+ public MiningFunction requireMiningFunction() {
+ return this.miningFunction;
+ }
+
@Override
public MiningFunction getMiningFunction() {
return this.miningFunction;
@@ -91,6 +95,10 @@ public class TestModel extends Model {
return this;
}

+ public MiningSchema requireMiningSchema() {
+ return this.miningSchema;
+ }
+
public MiningSchema getMiningSchema() {
return this.miningSchema;
}

0 comments on commit be098d2

Please sign in to comment.