Skip to content

Commit eabb822

Browse files
committed
Fix constructor
1 parent b7c1531 commit eabb822

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

x-pack/plugin/esql/src/internalClusterTest/java/org/elasticsearch/xpack/esql/spatial/SpatialNoLicenseTestCase.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
package org.elasticsearch.xpack.esql.spatial;
99

10+
import org.elasticsearch.common.settings.Settings;
1011
import org.elasticsearch.license.License;
1112
import org.elasticsearch.license.XPackLicenseState;
1213
import org.elasticsearch.license.internal.XPackLicenseStatus;
@@ -49,6 +50,10 @@ private static XPackLicenseState getLicenseState() {
4950
* This is used to test the behavior of spatial functions when no valid license is present.
5051
*/
5152
public static class TestEsqlPlugin extends EsqlPlugin {
53+
public TestEsqlPlugin(Settings settings) {
54+
super(settings);
55+
}
56+
5257
protected XPackLicenseState getLicenseState() {
5358
return SpatialNoLicenseTestCase.getLicenseState();
5459
}

0 commit comments

Comments
 (0)