Skip to content

Commit 957ea92

Browse files
committed
Fixed formatting
1 parent d3bc026 commit 957ea92

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/Groups/v1.0/test/New-MgGroup.Tests.ps1

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ Describe 'New-MgGroup' {
2525
Context 'Create' {
2626
It 'ShouldCreateNewGroup' {
2727
$CreateGroups = @()
28-
1..10 | ForEach-Object {
28+
1..100 | ForEach-Object {
2929
$Mock.PushScenario('ShouldCreateNewGroup')
3030
$CreateGroups += New-MgGroup -DisplayName "new-mggroup-test" -MailEnabled:$false -MailNickname 'unused' -SecurityEnabled
3131
}
3232

33-
$CreateGroups | Should -HaveCount 10
33+
$CreateGroups | Should -HaveCount 100
3434
$CreateGroups[0].DisplayName | Should -Be "new-mggroup-test"
3535
$CreateGroups[0].MailEnabled | Should -BeFalse
3636
}
@@ -45,9 +45,7 @@ Describe 'New-MgGroup' {
4545
$Mock.PushScenario('ShouldCreateNewGroup')
4646
New-MgGroup -DisplayName "new-mggroup-test" -MailEnabled:$false -MailNickname 'unused' -SecurityEnabled -RHV rv
4747
$rv.Vary | Should -Be "Accept-Encoding"
48-
$rv.'Content-Type' | Should -Be "application/json"
49-
50-
48+
$rv.'Content-Type' | Should -Be "application/json"
5149
}
5250
}
5351
}

0 commit comments

Comments
 (0)