Skip to content

Commit 1070fbc

Browse files
committed
Fix buildParams snapshot check for multiprojet projects
1 parent b1a173b commit 1070fbc

File tree

2 files changed

+2
-2
lines changed
  • x-pack/qa/multi-project

2 files changed

+2
-2
lines changed

x-pack/qa/multi-project/core-rest-tests-with-multiple-projects/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ tasks.named("yamlRestTest").configure {
8585
'^reindex/90_remote/*',
8686
'^reindex/95_parent_join/Reindex from remote*'
8787
];
88-
if (buildParams.isSnapshotBuild() == false) {
88+
if (buildParams.snapshotBuild == false) {
8989
blacklist += [];
9090
}
9191
systemProperty 'tests.rest.blacklist', blacklist.join(',')

x-pack/qa/multi-project/xpack-rest-tests-with-multiple-projects/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ tasks.named("yamlRestTest").configure {
164164
'^transform/transforms_upgrade/*',
165165
'^voting_only_node/10_basic/*'
166166
];
167-
if (buildParams.isSnapshotBuild() == false) {
167+
if (buildParams.snapshotBuild == false) {
168168
blacklist += [];
169169
}
170170
systemProperty 'tests.rest.blacklist', blacklist.join(',')

0 commit comments

Comments
 (0)