Fix naming conventions check for XPackTestCase

This class needs to be abstract or it fails the naming convention check.
This commit is contained in:
Jason Tedor 2018-06-12 11:34:40 -04:00
parent f738b7d9f8
commit 666997830e
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
1 changed files with 1 additions and 1 deletions

View File

@ -10,5 +10,5 @@ import com.carrotsearch.randomizedtesting.annotations.ThreadLeakFilters;
import org.elasticsearch.test.ESTestCase;
@ThreadLeakFilters(filters = {ObjectCleanerThreadThreadFilter.class})
public class XPackTestCase extends ESTestCase {
public abstract class XPackTestCase extends ESTestCase {
}