This is an automated email from the ASF dual-hosted git repository. astefanutti pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-k.git
commit aecfc093cc1f9c5cbfa7bdd0c8bcff2afdb099e4 Author: Antonin Stefanutti <[email protected]> AuthorDate: Mon Feb 22 10:38:05 2021 +0100 chore(e2e): Move PodDisruptionBudget trait tests in the e2e/common/traits directory --- e2e/common/{ => traits}/pdb_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/e2e/common/pdb_test.go b/e2e/common/traits/pdb_test.go similarity index 98% rename from e2e/common/pdb_test.go rename to e2e/common/traits/pdb_test.go index c1bce60..8f888d9 100644 --- a/e2e/common/pdb_test.go +++ b/e2e/common/traits/pdb_test.go @@ -19,7 +19,7 @@ See the License for the specific language governing permissions and limitations under the License. */ -package common +package traits import ( "net/http" @@ -44,7 +44,7 @@ func TestPodDisruptionBudget(t *testing.T) { WithNewTestNamespace(t, func(ns string) { name := "java" Expect(Kamel("install", "-n", ns).Execute()).To(BeNil()) - Expect(Kamel("run", "-n", ns, "files/Java.java", + Expect(Kamel("run", "-n", ns, "../files/Java.java", "--name", name, "-t", "pdb.enabled=true", "-t", "pdb.min-available=2",
