From cace8c587351c0bad73ae838be6a24fb333a6018 Mon Sep 17 00:00:00 2001 From: Zachary Folwick Date: Fri, 30 Oct 2015 16:12:40 -0700 Subject: [PATCH] corrected an issue with set-alias on linux --- src/pester-tests/Set-Alias.Tests.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pester-tests/Set-Alias.Tests.ps1 b/src/pester-tests/Set-Alias.Tests.ps1 index 56310d444..596e9f40b 100644 --- a/src/pester-tests/Set-Alias.Tests.ps1 +++ b/src/pester-tests/Set-Alias.Tests.ps1 @@ -6,6 +6,7 @@ } It "Should be able to have the same output between set-alias and the output of the function being aliased" { + set-alias -Name gd -Value Get-Date gd | Should Be $(Get-Date) } @@ -20,4 +21,4 @@ gd2 | Should Be $(gd) } -} \ No newline at end of file +}