File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ function Get-JiraConfigServer {
12
12
Write-DebugMessage " [$ ( $MyInvocation.MyCommand.Name ) ] ParameterSetName: $ ( $PsCmdlet.ParameterSetName ) "
13
13
Write-DebugMessage " [$ ( $MyInvocation.MyCommand.Name ) ] PSBoundParameters: $ ( $PSBoundParameters | Out-String ) "
14
14
15
- return $script :JiraServerUrl
15
+ return ( $script :JiraServerUrl -replace " \/$ " , " " )
16
16
}
17
17
18
18
end {
Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Describe "General project validation" -Tag Unit {
70
70
71
71
Import-Module $env: BHManifestToTest - Force
72
72
73
- Get-JiraConfigServer | Should - Be " https://example.com/ "
73
+ Get-JiraConfigServer | Should - Be " https://example.com"
74
74
}
75
75
76
76
# It "module is imported with default prefix" {
You can’t perform that action at this time.
0 commit comments