From 62de9f2645d9bd329bd6cfd2516997f225975049 Mon Sep 17 00:00:00 2001 From: Andrew Schwartzmeyer Date: Fri, 15 Jan 2016 14:31:52 -0800 Subject: [PATCH] Fix the Get-Item Pester test Failed because we renamed the test directory. --- test/powershell/Get-Item.Tests.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/powershell/Get-Item.Tests.ps1 b/test/powershell/Get-Item.Tests.ps1 index 80f102fb58f..d2b14b74a42 100644 --- a/test/powershell/Get-Item.Tests.ps1 +++ b/test/powershell/Get-Item.Tests.ps1 @@ -8,7 +8,7 @@ Describe "Get-Item" { It "Should return the name of the current working directory when a dot is used" { (Get-Item $here).GetType().BaseType | Should Be 'System.IO.FileSystemInfo' - (Get-Item $here).Name | Should Be 'pester-tests' + (Get-Item $here).Name | Should Be 'powershell' } It "Should return the proper Name and BaseType for directory objects vs file system objects" {