Skip to content

Commit

Permalink
rename data frame tests to transform tests (elastic#49361)
Browse files Browse the repository at this point in the history
rename files and tests in rolling upgrade tests to transform
  • Loading branch information
Hendrik Muhs authored Nov 20, 2019
1 parent 38de033 commit 039da97
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions x-pack/qa/rolling-upgrade/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ for (Version bwcVersion : bwcVersions.wireCompatible) {
'mixed_cluster/40_ml_datafeed_crud/Put job and datafeed in mixed cluster',
'mixed_cluster/40_ml_datafeed_crud/Put job and datafeed without aggs in mixed cluster',
'mixed_cluster/40_ml_datafeed_crud/Put job and datafeed with aggs in mixed cluster',
'mixed_cluster/80_data_frame_jobs_crud/Test put batch data frame transforms on mixed cluster',
'mixed_cluster/80_data_frame_jobs_crud/Test put continuous data frame transform on mixed cluster',
'mixed_cluster/80_transform_jobs_crud/Test put batch transform on mixed cluster',
'mixed_cluster/80_transform_jobs_crud/Test put continuous transform on mixed cluster',
'mixed_cluster/90_ml_data_frame_analytics_crud/Put an outlier_detection job on the mixed cluster'
].join(',')
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"Test put batch data frame transforms on mixed cluster":
"Test put batch transform on mixed cluster":
- do:
cluster.health:
index: "transform-airline-data"
Expand Down Expand Up @@ -105,7 +105,7 @@
- match: { transforms.0.state: "stopped" }

---
"Test put continuous data frame transform on mixed cluster":
"Test put continuous transform on mixed cluster":
- do:
cluster.health:
index: "transform-airline-data-cont"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
"Test put batch data frame transforms on old cluster":
"Test put batch transform on old cluster":
- do:
indices.create:
index: transform-airline-data
Expand Down Expand Up @@ -135,7 +135,7 @@
- match: { transforms.0.id: "old-complex-transform" }

---
"Test put continuous data frame transform on old cluster":
"Test put continuous transform on old cluster":
- do:
indices.create:
index: transform-airline-data-cont
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ setup:
# wait for long enough that we give delayed unassigned shards to stop being delayed
timeout: 70s
---
"Get start, stop, and delete old cluster batch data frame transforms":
"Get start, stop, and delete old cluster batch transform":
# Simple and complex OLD transforms
- do:
transform.get_transform:
Expand Down Expand Up @@ -85,7 +85,7 @@ setup:
- match: { count: 0 }

---
"Get start, stop mixed cluster batch data frame transforms":
"Get start, stop mixed cluster batch transform":
# Simple and complex Mixed cluster transforms
- do:
transform.get_transform:
Expand Down

0 comments on commit 039da97

Please sign in to comment.