We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e07286 commit c43c9c5Copy full SHA for c43c9c5
test/Setup.Tests.ps1
@@ -19,7 +19,7 @@ Describe "Setup" {
19
It "should properly download and extract Apache Ant" {
20
$path = [Setup]::new($latestRelease).Download($true)
21
Join-Path $path "bin/$($IsWindows ? "ant.cmd" : "ant")" | Should -Exist
22
- $jars = Get-ChildItem (Join-Path $path "lib/*.jar")
+ $jars = Get-Item (Join-Path $path "lib/*.jar")
23
$jars.Where{ $_.BaseName.StartsWith("ivy-") } | Should -HaveCount 1
24
}
25
0 commit comments