File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
x-pack/docs/src/test/java/org/elasticsearch/smoketest Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ public void reenableWatcher() throws Exception {
107107 @ Override
108108 protected boolean isWatcherTest () {
109109 String testName = getTestName ();
110- return testName != null && testName .contains ("watcher/" );
110+ return testName != null && ( testName .contains ("watcher/" ) || testName . contains ( "watcher \\ " ) );
111111 }
112112
113113 @ Override
@@ -118,13 +118,13 @@ protected boolean isMonitoringTest() {
118118 @ Override
119119 protected boolean isMachineLearningTest () {
120120 String testName = getTestName ();
121- return testName != null && testName .contains ("ml/" );
121+ return testName != null && ( testName .contains ("ml/" ) || testName . contains ( "ml \\ " ) );
122122 }
123123
124124 @ Override
125125 protected boolean isRollupTest () {
126126 String testName = getTestName ();
127- return testName != null && testName .contains ("rollup/" );
127+ return testName != null && ( testName .contains ("rollup/" ) || testName . contains ( "rollup \\ " ) );
128128 }
129129
130130 /**
You can’t perform that action at this time.
0 commit comments