From 95ba696187afa485d438a80213bcffdf97b3e22f Mon Sep 17 00:00:00 2001 From: Michael Sverdlov Date: Wed, 6 Nov 2024 12:22:22 +0200 Subject: [PATCH] Improve repositores code Signed-off-by: Michael Sverdlov --- artifactory/commands/python/utils_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artifactory/commands/python/utils_test.go b/artifactory/commands/python/utils_test.go index 2c564b3b4..3960e0076 100644 --- a/artifactory/commands/python/utils_test.go +++ b/artifactory/commands/python/utils_test.go @@ -30,7 +30,7 @@ func TestAddRepoToPyprojectFile(t *testing.T) { func initPoetryTest(t *testing.T) (string, func()) { // Create and change directory to test workspace - testAbs, err := filepath.Abs(filepath.Join("..", "..", "tests", "testdata", "poetry-project")) + testAbs, err := filepath.Abs(filepath.Join("..", "..", "..", "tests", "testdata", "poetry-project")) assert.NoError(t, err) poetryProjectPath, cleanUp := tests.CreateTestWorkspace(t, testAbs) return poetryProjectPath, cleanUp