Skip to content

Commit 95eed0c

Browse files
authored
Merge pull request #65 from replicaJunction/bugfix-requestItemName
Fix typo in PSTypeName for Get-ServiceNowRequestItem
2 parents 25c3daa + 00306a2 commit 95eed0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ServiceNow/Public/Get-ServiceNowRequestItem.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function Get-ServiceNowRequestItem {
9393
# Perform query and return each object in the format.ps1xml format
9494
$Result = Get-ServiceNowTable @getServiceNowTableSplat
9595
If (-not $Properties) {
96-
$Result | ForEach-Object {$_.PSObject.TypeNames.Insert(0,'ServiceNow.Request')}
96+
$Result | ForEach-Object {$_.PSObject.TypeNames.Insert(0,'ServiceNow.RequestItem')}
9797
}
9898
$Result
9999
}

0 commit comments

Comments
 (0)