Skip to content

Commit 90bf689

Browse files
authored
ESQL: Fix test class casing (#137177)
* Fix casing of StdDevOverTimeTests class name This seems to have tripped other tests that dynamically load classes. * Unmute CommandLicenseTests
1 parent 797cf9d commit 90bf689

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

muted-tests.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -516,9 +516,6 @@ tests:
516516
- class: org.elasticsearch.cluster.routing.allocation.decider.WriteLoadConstraintDeciderIT
517517
method: testCanRemainNotPreferredIsIgnoredWhenAllOtherNodesReturnNotPreferred
518518
issue: https://github.com/elastic/elasticsearch/issues/137162
519-
- class: org.elasticsearch.xpack.esql.plan.logical.CommandLicenseTests
520-
method: testLicenseCheck
521-
issue: https://github.com/elastic/elasticsearch/issues/137168
522519

523520
# Examples:
524521
#
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
import java.util.List;
1818
import java.util.function.Supplier;
1919

20-
public class StddevOverTimeTests extends AbstractFunctionTestCase {
21-
public StddevOverTimeTests(Supplier<TestCaseSupplier.TestCase> testCaseSupplier) {
20+
public class StdDevOverTimeTests extends AbstractFunctionTestCase {
21+
public StdDevOverTimeTests(Supplier<TestCaseSupplier.TestCase> testCaseSupplier) {
2222
testCase = testCaseSupplier.get();
2323
}
2424

0 commit comments

Comments
 (0)