From 71ec53d17c4387304dd8cef9742d0040026f99b7 Mon Sep 17 00:00:00 2001 From: Konrad Jamrozik Date: Mon, 9 Jan 2023 14:39:55 -0800 Subject: [PATCH] fix import paths - again --- ...ob-matrix-functions.modification.tests.ps1 | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/eng/common-tests/matrix-generator/tests/job-matrix-functions.modification.tests.ps1 b/eng/common-tests/matrix-generator/tests/job-matrix-functions.modification.tests.ps1 index ef8c3b11691..f7ff4fa6226 100644 --- a/eng/common-tests/matrix-generator/tests/job-matrix-functions.modification.tests.ps1 +++ b/eng/common-tests/matrix-generator/tests/job-matrix-functions.modification.tests.ps1 @@ -88,7 +88,7 @@ Describe "Platform Matrix nonSparse" -Tag "UnitTest", "nonsparse" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "TestField1": "test1" }, "exclude": [ { "Baz": "importedBaz" } ] @@ -130,7 +130,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json" + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json" }, "include": [ { @@ -173,7 +173,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "TestField1": "test1", "TestField2": "test2" }, @@ -206,7 +206,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "testField": [ "test1", "test2" ] } } @@ -235,7 +235,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { "importedBaz": "importedBazNameOverride" }, "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "testField": [ "test1", "test2" ] } } @@ -251,7 +251,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "testField1": [ "test11", "test12" ], "testField2": [ "test21", "test22" ] } @@ -299,7 +299,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "testField": [ "test1", "test2", "test3" ], }, "include": [ @@ -364,7 +364,7 @@ Describe "Platform Matrix Import" -Tag "UnitTest", "import" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "Foo": [ "fooOverride1", "fooOverride2" ], } } @@ -450,7 +450,7 @@ Describe "Platform Matrix Replace" -Tag "UnitTest", "replace" { $matrixJson = @' { "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "testField": [ "test1", "test2" ] } } @@ -550,7 +550,7 @@ Describe "Platform Matrix Replace" -Tag "UnitTest", "replace" { "replaceme": "" }, "matrix": { - "$IMPORT": "./eng/common-tests/matrix-generator/tests/test-import-matrix.json", + "$IMPORT": "../../../common-tests/matrix-generator/tests/test-import-matrix.json", "replaceme": "replaceme" } }