Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
NikCharlebois committed Jan 19, 2024
1 parent 5a3ddf6 commit 0438cda
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Tests/Unit/Microsoft365DSC/Microsoft365DSC.AADGroup.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ Describe -Name $Global:DscHelper.DescribeHeader -Fixture {

Mock -CommandName Restore-MgBetaDirectoryDeletedItem -MockWith {
}
Mock -CommandName Get-MgBetaDirectoryDeletedItemAsGroup -MockWith {
}

Mock -CommandName Get-MgBetaDirectoryDeletedItem -MockWith {
}
Expand Down
10 changes: 10 additions & 0 deletions Tests/Unit/Stubs/Microsoft365.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -51840,6 +51840,16 @@ function Get-MgBetaDirectoryDeletedItem
param()
}

function Get-MgBetaDirectoryDeletedItem
{
[CmdletBinding()]
param(
[Parameter()]
[String]
$Filter
)
}

function Remove-MgBetaDirectoryAdministrativeUnitScopedRoleMember
{
[CmdletBinding()]
Expand Down

0 comments on commit 0438cda

Please sign in to comment.