-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update formatting based on code review.
- Loading branch information
1 parent
6edc311
commit c8d0aa7
Showing
1 changed file
with
2 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1730,7 +1730,6 @@ try | |
} | ||
|
||
Context 'When a scheduled task is created using a Group Managed Service Account' { | ||
|
||
$testParameters = @{ | ||
TaskName = 'Test task' | ||
TaskPath = '\Test\' | ||
|
@@ -1800,13 +1799,13 @@ try | |
} | ||
} | ||
|
||
It 'Test should return true if the task is in desired state and given gMSA user in DOMAIN\User$ format' { | ||
It 'Should return true if the task is in desired state and given gMSA user in DOMAIN\User$ format' { | ||
Test-TargetResource @testParameters | Should -Be $true | ||
} | ||
|
||
$testParameters.ExecuteAsGMSA = '[email protected]' | ||
|
||
It 'Test should return true if the task is in desired state and given gMSA user in UPN format' { | ||
It 'Should return true if the task is in desired state and given gMSA user in UPN format' { | ||
Test-TargetResource @testParameters | Should -Be $true | ||
} | ||
} | ||
|