File tree 1 file changed +3
-3
lines changed
docs/src/test/java/org/elasticsearch/smoketest
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ protected ClientYamlTestClient initClientYamlTestClient(
101
101
102
102
@ After
103
103
public void cleanup () throws Exception {
104
- if (isMachineLearningTest () || isDataFrameTest ()) {
104
+ if (isMachineLearningTest () || isTransformTest ()) {
105
105
ESRestTestCase .waitForPendingTasks (adminClient ());
106
106
}
107
107
}
@@ -111,9 +111,9 @@ protected boolean isMachineLearningTest() {
111
111
return testName != null && (testName .contains ("/ml/" ) || testName .contains ("\\ ml\\ " ));
112
112
}
113
113
114
- protected boolean isDataFrameTest () {
114
+ protected boolean isTransformTest () {
115
115
String testName = getTestName ();
116
- return testName != null && (testName .contains ("/data-frames /" ) || testName .contains ("\\ data-frames \\ " ));
116
+ return testName != null && (testName .contains ("/transform /" ) || testName .contains ("\\ transform \\ " ));
117
117
}
118
118
119
119
/**
You can’t perform that action at this time.
0 commit comments