Skip to content

Commit

Permalink
fix import paths - again
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad Jamrozik committed Jan 9, 2023
1 parent 2f30ceb commit 71ec53d
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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" } ]
Expand Down Expand Up @@ -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": [
{
Expand Down Expand Up @@ -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"
},
Expand Down Expand Up @@ -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" ]
}
}
Expand Down Expand Up @@ -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" ]
}
}
Expand All @@ -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" ]
}
Expand Down Expand Up @@ -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": [
Expand Down Expand Up @@ -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" ],
}
}
Expand Down Expand Up @@ -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" ]
}
}
Expand Down Expand Up @@ -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"
}
}
Expand Down

0 comments on commit 71ec53d

Please sign in to comment.