Skip to content

Commit

Permalink
EQL: Rename a test class for eclipse (#79254)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nik9000 authored Oct 18, 2021
1 parent 5ef4a27 commit 9e0ee67
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
import org.elasticsearch.test.rest.yaml.ClientYamlTestCandidate;
import org.elasticsearch.test.rest.yaml.ESClientYamlSuiteTestCase;

public class EqlRestIT extends ESClientYamlSuiteTestCase {
public class EqlClientYamlIT extends ESClientYamlSuiteTestCase {

public EqlRestIT(final ClientYamlTestCandidate testCandidate) {
public EqlClientYamlIT(final ClientYamlTestCandidate testCandidate) {
super(testCandidate);
}

Expand Down

0 comments on commit 9e0ee67

Please sign in to comment.