Skip to content

Commit

Permalink
Fixed goofy tab indents
Browse files Browse the repository at this point in the history
  • Loading branch information
thom neale committed May 31, 2024
1 parent 9a9b165 commit 997157b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ InModuleScope Orchestrator {
}
It 'Should only run each baseline once if provider names contains duplicates' {
{Invoke-Scuba -ProductNames aad,aad} | Should -Not -Throw
Assert-MockCalled Invoke-ReportCreation -ParameterFilter {$ProductNames -eq 'aad'}
Should -Invoke Invoke-ReportCreation -ParameterFilter {$ProductNames -eq 'aad'}
}
}
Context 'Service Principal provided'{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ InModuleScope ScubaConfig {
BeforeEach{
[ScubaConfig]::ResetInstance()
$Config = [ScubaConfig]::GetInstance()
$Config.Configuration.ProductNames = @('aad', 'aad')
$Config.Configuration.ProductNames = @('aad', 'aad')
}
It 'Should not contain duplicate product names'{
$Config.Configuration.ProductNames | Should -BeExactly @('aad')
Expand Down

0 comments on commit 997157b

Please sign in to comment.