From commits-return-70362-archive-asf-public=cust-asf.ponee.io@camel.apache.org Sun Mar 3 11:16:58 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id BC759180630 for ; Sun, 3 Mar 2019 12:16:57 +0100 (CET) Received: (qmail 86177 invoked by uid 500); 3 Mar 2019 11:16:56 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 86168 invoked by uid 99); 3 Mar 2019 11:16:56 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Mar 2019 11:16:56 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 6077187752; Sun, 3 Mar 2019 11:16:56 +0000 (UTC) Date: Sun, 03 Mar 2019 11:16:56 +0000 To: "commits@camel.apache.org" Subject: [camel-k] branch runtime-0.3.0 updated: fix(test): Fixed tests after bumping to 0.3.0 the runtime MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <155161181619.5672.16582876153360375750@gitbox.apache.org> From: acosentino@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: camel-k X-Git-Refname: refs/heads/runtime-0.3.0 X-Git-Reftype: branch X-Git-Oldrev: 2e390ce320a915527c3892816f0fad4e8d89bb1b X-Git-Newrev: 0352344fc74b25bd30202ac00d54673d20ce6ce4 X-Git-Rev: 0352344fc74b25bd30202ac00d54673d20ce6ce4 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch runtime-0.3.0 in repository https://gitbox.apache.org/repos/asf/camel-k.git The following commit(s) were added to refs/heads/runtime-0.3.0 by this push: new 0352344 fix(test): Fixed tests after bumping to 0.3.0 the runtime 0352344 is described below commit 0352344fc74b25bd30202ac00d54673d20ce6ce4 Author: Andrea Cosentino AuthorDate: Sun Mar 3 12:16:23 2019 +0100 fix(test): Fixed tests after bumping to 0.3.0 the runtime --- pkg/builder/builder_steps_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/builder/builder_steps_test.go b/pkg/builder/builder_steps_test.go index bfad198..8260fb9 100644 --- a/pkg/builder/builder_steps_test.go +++ b/pkg/builder/builder_steps_test.go @@ -60,7 +60,7 @@ func TestGenerateJvmProject(t *testing.T) { assert.Equal(t, "pom", ctx.Project.DependencyManagement.Dependencies[0].Type) assert.Equal(t, "import", ctx.Project.DependencyManagement.Dependencies[0].Scope) - assert.Equal(t, 2, len(ctx.Project.Dependencies)) + assert.Equal(t, 3, len(ctx.Project.Dependencies)) assert.Contains(t, ctx.Project.Dependencies, maven.Dependency{ GroupID: "org.apache.camel.k", ArtifactID: "camel-k-runtime-jvm", @@ -105,7 +105,7 @@ func TestGenerateGroovyProject(t *testing.T) { assert.Equal(t, "pom", ctx.Project.DependencyManagement.Dependencies[0].Type) assert.Equal(t, "import", ctx.Project.DependencyManagement.Dependencies[0].Scope) - assert.Equal(t, 4, len(ctx.Project.Dependencies)) + assert.Equal(t, 5, len(ctx.Project.Dependencies)) assert.Contains(t, ctx.Project.Dependencies, maven.Dependency{ GroupID: "org.apache.camel.k",