From f991a599f56874bdd6002b77a041197e36e6ff19 Mon Sep 17 00:00:00 2001 From: "Chris. Webster" Date: Mon, 27 Feb 2023 20:01:57 -0800 Subject: [PATCH] test(integration): fix package name conflict (#2719) --- test/integration.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration.test.js b/test/integration.test.js index 235b1b2e..ce9d4632 100644 --- a/test/integration.test.js +++ b/test/integration.test.js @@ -716,7 +716,7 @@ test("Use the repository URL as is if none of the given git credentials are vali }); test("ESM Plugin with named exports", async (t) => { - const packageName = "log-secret"; + const packageName = "plugin-exports"; // Create a git repository, set the current working directory at the root of the repo t.log("Create git repository"); const { cwd, repositoryUrl } = await gitbox.createRepo(packageName);