Skip to content

Commit

Permalink
fix nupkgPath path in the test
Browse files Browse the repository at this point in the history
  • Loading branch information
anamnavi committed Dec 20, 2024
1 parent 8fc2778 commit 8d65189
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ Describe "Test Publish-PSResource" -tags 'CI' {
}

It "Publish a package given NupkgPath to a package with .psd1" {
$packageName = "temp-testmodule-nupkgpath"
$packageName = "temp-testmodule-nupkgpath.nupkg"
$version = "1.0.0.0"
$nupkgPath = Join-Path -Path $script:testNupkgsFolderPath -ChildPath $packageName
Publish-PSResource -NupkgPath $nupkgPath -Repository $ACRRepoName
Expand All @@ -528,7 +528,7 @@ Describe "Test Publish-PSResource" -tags 'CI' {
}

It "Publish a package given NupkgPath to a package with .ps1" {
$packageName = "temp-testscript-nupkgpath"
$packageName = "temp-testscript-nupkgpath.nupkg"
$version = "1.0.0.0"
$nupkgPath = Join-Path -Path $script:testNupkgsFolderPath -ChildPath $packageName
Publish-PSResource -NupkgPath $nupkgPath -Repository $ACRRepoName
Expand All @@ -540,7 +540,7 @@ Describe "Test Publish-PSResource" -tags 'CI' {
}

It "Publish a package given NupkgPath to a package with .nuspec" {
$packageName = "temp-testnupkg-nupkgpath"
$packageName = "temp-testnupkg-nupkgpath.nupkg"
$version = "1.0.0.0"
$nupkgPath = Join-Path -Path $script:testNupkgsFolderPath -ChildPath $packageName
Publish-PSResource -NupkgPath $nupkgPath -Repository $ACRRepoName
Expand Down

0 comments on commit 8d65189

Please sign in to comment.