Skip to content

Commit 9e0ee67

Browse files
authored
EQL: Rename a test class for eclipse (#79254)
Eclipse puts all of a project's classes into the same classpath. It's a silly thing but that's what it does. This was causing an error importing the EQL rest tests because we had two classes named `EqlRestIT`. I usually just closed that project after importing into eclipse. Today I decided to make Eclipse happy and rename the test.
1 parent 5ef4a27 commit 9e0ee67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/plugin/eql/qa/rest/src/yamlRestTest/java/org/elasticsearch/xpack/eql/EqlRestIT.java renamed to x-pack/plugin/eql/qa/rest/src/yamlRestTest/java/org/elasticsearch/xpack/eql/EqlClientYamlIT.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
import org.elasticsearch.test.rest.yaml.ClientYamlTestCandidate;
1313
import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase;
1414

15-
public class EqlRestIT extends ESClientYamlSuiteTestCase {
15+
public class EqlClientYamlIT extends ESClientYamlSuiteTestCase {
1616

17-
public EqlRestIT(final ClientYamlTestCandidate testCandidate) {
17+
public EqlClientYamlIT(final ClientYamlTestCandidate testCandidate) {
1818
super(testCandidate);
1919
}
2020

0 commit comments

Comments
 (0)