From 8ba26f4142ed32c1872a0949471624f8939a7939 Mon Sep 17 00:00:00 2001 From: vexx32 <32407840+vexx32@users.noreply.github.com> Date: Sun, 22 Jul 2018 13:08:51 -0400 Subject: [PATCH] Fix errors in AboutPSProviders --- Koans/Cmdlets 1/AboutPSProviders.Tests.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Koans/Cmdlets 1/AboutPSProviders.Tests.ps1 b/Koans/Cmdlets 1/AboutPSProviders.Tests.ps1 index cd8d8368d..d3ef3de2d 100644 --- a/Koans/Cmdlets 1/AboutPSProviders.Tests.ps1 +++ b/Koans/Cmdlets 1/AboutPSProviders.Tests.ps1 @@ -66,7 +66,7 @@ Describe 'Alias Provider' { } It 'allows for seeking out aliases for a command' { - $CmdletName = '__' + $CmdletName = __ $AliasData = Get-Alias -Definition $CmdletName $AliasData.Name | Should -Be 'gcm' @@ -80,9 +80,9 @@ Describe 'Alias Provider' { It 'can create aliases too!' { Set-Alias -Name 'grok' -Value 'Get-Item' - $File = grok '__' + $File = grok $home - $File | Should -BeOfType 'System.IO.FileInfo' + $File | Should -BeOfType __ } }