From 978e6cb1f4a19a00ea6158cbd7ae7e56194a9e3a Mon Sep 17 00:00:00 2001 From: Steve Lee Date: Wed, 11 Dec 2024 17:53:21 -0800 Subject: [PATCH] fix test --- dsc/tests/dsc_args.tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dsc/tests/dsc_args.tests.ps1 b/dsc/tests/dsc_args.tests.ps1 index ec4b2062..e13e216d 100644 --- a/dsc/tests/dsc_args.tests.ps1 +++ b/dsc/tests/dsc_args.tests.ps1 @@ -291,6 +291,6 @@ resources: It 'Invalid --system-root' { dsc config --system-root /invalid/path get -f "$PSScriptRoot/../examples/groups.dsc.yaml" 2> $TestDrive/tracing.txt $LASTEXITCODE | Should -Be 1 - "$TestDrive/tracing.txt" | Should -FileContentMatchExactly "Target path '/invalid/path' does not exist" + "$TestDrive/tracing.txt" | Should -FileContentMatchExactly "Target path does not exist: '/invalid/path'" } }