Skip to content

Commit

Permalink
'Update comment based help and tests
Browse files Browse the repository at this point in the history
This pull request was automatically created by the d365fo.tools-Generate-Text action'
  • Loading branch information
FH-Inway committed Jan 28, 2024
1 parent 7e8b696 commit 0581016
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
It 'Should have the expected parameter Path' {
$parameter = (Get-Command Import-D365RsatSelfServiceCertificates).Parameters['Path']
$parameter.Name | Should -Be 'Path'
$parameter.ParameterType.ToString() | Should -Be System.Object
$parameter.ParameterType.ToString() | Should -Be System.String
$parameter.IsDynamic | Should -Be $False
$parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
$parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
Expand All @@ -27,7 +27,7 @@
It 'Should have the expected parameter Password' {
$parameter = (Get-Command Import-D365RsatSelfServiceCertificates).Parameters['Password']
$parameter.Name | Should -Be 'Password'
$parameter.ParameterType.ToString() | Should -Be System.Object
$parameter.ParameterType.ToString() | Should -Be System.String
$parameter.IsDynamic | Should -Be $False
$parameter.ParameterSets.Keys | Should -Be '__AllParameterSets'
$parameter.ParameterSets.Keys | Should -Contain '__AllParameterSets'
Expand Down
6 changes: 3 additions & 3 deletions docs/Import-D365RsatSelfServiceCertificates.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Import certificates for RSAT
## SYNTAX

```
Import-D365RsatSelfServiceCertificates [-Path] <Object> [-Password] <Object> [<CommonParameters>]
Import-D365RsatSelfServiceCertificates [-Path] <String> [-Password] <String> [<CommonParameters>]
```

## DESCRIPTION
Expand Down Expand Up @@ -44,7 +44,7 @@ Path to the folder where the .cer and .pxf files are located
The files needs to be extracted from the zip archive

```yaml
Type: Object
Type: String
Parameter Sets: (All)
Aliases:

Expand All @@ -61,7 +61,7 @@ Password for the .pxf file
Working with self-service environments, the password will be displayed during the download of the zip archive
```yaml
Type: Object
Type: String
Parameter Sets: (All)
Aliases:

Expand Down

0 comments on commit 0581016

Please sign in to comment.