We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2f18fa commit fb15f2aCopy full SHA for fb15f2a
1 file changed
adapters/powershell/Tests/powershellgroup.config.tests.ps1
@@ -126,7 +126,8 @@ Describe 'PowerShell adapter resource tests' {
126
$res.resources[0].properties.result.count | Should -Be 1
127
$res.resources[0].properties.result[0].Name | Should -Be "FilteredExport"
128
$res.resources[0].properties.result[0].Prop1 | Should -Be "Filtered Property for FilteredExport"
129
- "$TestDrive/export_trace.txt" | Should -FileContentMatch "Properties provided for filtered export" -Because (Get-Content -Raw -Path $TestDrive/export_trace.txt)
+ $traceLog = Get-Content -Raw -Path "$TestDrive/export_trace.txt"
130
+ $traceLog | Should -BeLike "*Properties provided for filtered export*" -Because $traceLog
131
}
132
133
It 'Export fails when filtered export is requested but not implemented' {
0 commit comments