From 8517b8dafb3740ecaf8e38ab1801c6354ce4d4db Mon Sep 17 00:00:00 2001 From: Sergei Vorobev Date: Sat, 28 Jan 2017 09:14:23 -0800 Subject: [PATCH] Mark Write-Information test as pending on macOS --- .../Modules/Microsoft.PowerShell.Utility/Write-Stream.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/powershell/Modules/Microsoft.PowerShell.Utility/Write-Stream.Tests.ps1 b/test/powershell/Modules/Microsoft.PowerShell.Utility/Write-Stream.Tests.ps1 index c6447e393..338939a1b 100644 --- a/test/powershell/Modules/Microsoft.PowerShell.Utility/Write-Stream.Tests.ps1 +++ b/test/powershell/Modules/Microsoft.PowerShell.Utility/Write-Stream.Tests.ps1 @@ -83,7 +83,7 @@ Describe "Stream writer tests" -Tags "CI" { $ps.Dispose() } - It "Write-Information outputs an information object" { + It "Write-Information outputs an information object" -Pending:($IsOSX) { # redirect the streams is sufficient $result = Write-Information "Test Message" *>&1 $result.GetType().Fullname | Should be "System.Management.Automation.InformationRecord"