Skip to content

Commit

Permalink
Fix errors in AboutPSProviders
Browse files Browse the repository at this point in the history
  • Loading branch information
vexx32 committed Jul 22, 2018
1 parent 9607da0 commit 8ba26f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Koans/Cmdlets 1/AboutPSProviders.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand All @@ -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 __
}
}

Expand Down

0 comments on commit 8ba26f4

Please sign in to comment.