Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gweinjc committed Aug 8, 2024
1 parent 1daa331 commit 8cee69f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Describe -Tag:('JCAdmin') 'Get-JCAdmin Tests' {
$Admins | Should -Not -BeNullOrEmpty
}
It ('Get administrators by enableMultifactor') {
$Admins = Get-JCAdmin -enableMultifactor $true
$Admins = Get-JCAdmin -enableMultifactor $false
$Admins | Should -Not -BeNullOrEmpty
}
It ('Get administrators by totpEnrolled') {
Expand All @@ -21,7 +21,7 @@ Describe -Tag:('JCAdmin') 'Get-JCAdmin Tests' {
$Admins | Should -Not -BeNullOrEmpty
}
It ('Get administrators by email, enableMultifactor, totpEnrolled, roleName') {
$Admins = Get-JCAdmin -email 'solutions-architecture*' -enableMultifactor $true -totpEnrolled $true -roleName 'Administrator With Billing'
$Admins = Get-JCAdmin -email 'solutions-architecture*' -enableMultifactor $false -totpEnrolled $true -roleName 'Administrator With Billing'
$Admins | Should -Not -BeNullOrEmpty
}
}
Expand Down

0 comments on commit 8cee69f

Please sign in to comment.