From 795c1218523a85333838b02e757aa1ad07f17613 Mon Sep 17 00:00:00 2001 From: Jason Tedor Date: Mon, 14 Nov 2016 13:52:57 -0500 Subject: [PATCH] Remove explicit task paths in tribe node test This commit removes some explicit paths in the tribe node smoke test so that these are easier to maintain (in the case of reorganization). --- qa/smoke-test-tribe-node/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qa/smoke-test-tribe-node/build.gradle b/qa/smoke-test-tribe-node/build.gradle index 6bf6ed03a3f..6e108e87043 100644 --- a/qa/smoke-test-tribe-node/build.gradle +++ b/qa/smoke-test-tribe-node/build.gradle @@ -64,6 +64,6 @@ integTest { setting 'tribe.two.transport.tcp.port', '40250-40399' } // need to kill the standalone nodes here - finalizedBy ':qa:smoke-test-tribe-node:setupClusterOne#stop' - finalizedBy ':qa:smoke-test-tribe-node:setupClusterTwo#stop' + finalizedBy 'setupClusterOne#stop' + finalizedBy 'setupClusterTwo#stop' }