From e3dfbebe8a533826419111f88c7cec3e09e538c4 Mon Sep 17 00:00:00 2001 From: schristoff <28318173+schristoff@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:03:59 -0600 Subject: [PATCH] oh i was double copying Signed-off-by: schristoff <28318173+schristoff@users.noreply.github.com> --- build/testdata/bundles/mysql/porter.yaml | 4 ++-- build/testdata/bundles/wordpress/porter.yaml | 4 ++-- tests/integration/dependencies_test.go | 2 -- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/build/testdata/bundles/mysql/porter.yaml b/build/testdata/bundles/mysql/porter.yaml index 74ebbf04c..94dc0d306 100644 --- a/build/testdata/bundles/mysql/porter.yaml +++ b/build/testdata/bundles/mysql/porter.yaml @@ -1,6 +1,6 @@ -schemaVersion: 1.0.0 +schemaVersion: 1.0.1 name: mysql -version: 0.1.4 +version: 0.1.0 registry: "localhost:5000" mixins: diff --git a/build/testdata/bundles/wordpress/porter.yaml b/build/testdata/bundles/wordpress/porter.yaml index 852eb0002..40e15213b 100644 --- a/build/testdata/bundles/wordpress/porter.yaml +++ b/build/testdata/bundles/wordpress/porter.yaml @@ -1,4 +1,4 @@ -schemaVersion: 1.0.0 +schemaVersion: 1.0.1 name: wordpress version: 0.1.4 registry: "localhost:5000" @@ -14,7 +14,7 @@ dependencies: requires: - name: mysql bundle: - reference: localhost:5000/mysql:v0.1.4 + reference: localhost:5000/mysql:0.1.0 parameters: database-name: wordpress mysql-user: wordpress diff --git a/tests/integration/dependencies_test.go b/tests/integration/dependencies_test.go index 7792e01df..2dc5e322e 100644 --- a/tests/integration/dependencies_test.go +++ b/tests/integration/dependencies_test.go @@ -275,8 +275,6 @@ func TestSharedDependencies(t *testing.T) { p.CopyDirectory(filepath.Join(p.RepoRoot, "build/testdata/bundles/mysql"), ".", false) installMySQLbundle(ctx, p, namespace) - p.CopyDirectory(filepath.Join(p.RepoRoot, "build/testdata/bundles/wordpress"), "./wordpress", false) - p.Chdir("./wordpress") installWordpressBundle(ctx, p, namespace) }