From 47e61ace36f69885f1543d6d859bf1918da586c1 Mon Sep 17 00:00:00 2001 From: Mark Kraus Date: Fri, 24 Nov 2017 19:28:05 -0600 Subject: [PATCH] [Feature] Increase version to 6.1 for PSSessionConfiguration tests --- .../PSSessionConfiguration.Tests.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/powershell/Modules/Microsoft.PowerShell.Core/PSSessionConfiguration.Tests.ps1 b/test/powershell/Modules/Microsoft.PowerShell.Core/PSSessionConfiguration.Tests.ps1 index 9255952eb4a..9ef416373c2 100644 --- a/test/powershell/Modules/Microsoft.PowerShell.Core/PSSessionConfiguration.Tests.ps1 +++ b/test/powershell/Modules/Microsoft.PowerShell.Core/PSSessionConfiguration.Tests.ps1 @@ -488,7 +488,7 @@ namespace PowershellTestConfigNamespace $Result.Session.Name | Should be $TestSessionConfigName $Result.Session.SessionType | Should be "Default" - $Result.Session.PSVersion | Should be 6.0 + $Result.Session.PSVersion | Should be 6.1 $Result.Session.Enabled | Should be $true $Result.Session.lang | Should be $Result.Culture $Result.Session.pssessionthreadoptions | Should be $pssessionthreadoptions @@ -557,7 +557,7 @@ namespace PowershellTestConfigNamespace $Result = [PSObject]@{Session = (Get-PSSessionConfiguration -Name $TestSessionConfigName) ; Culture = (Get-Item WSMan:\localhost\Plugin\microsoft.powershell\lang -ea SilentlyContinue).value} $Result.Session.Name | Should be $TestSessionConfigName - $Result.Session.PSVersion | Should be 6.0 + $Result.Session.PSVersion | Should be 6.1 $Result.Session.Enabled | Should be $true $Result.Session.lang | Should be $result.Culture $Result.Session.pssessionthreadoptions | Should be $pssessionthreadoptions