Skip to content

Commit d0f05b2

Browse files
Fix type name (copy/paste error)
1 parent 30991c0 commit d0f05b2

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
@@ -88,6 +88,6 @@ function Get-ServiceNowRequestItem {
8888

8989
# Perform query and return each object in the format.ps1xml format
9090
$Result = Get-ServiceNowTable @getServiceNowTableSplat
91-
$Result | ForEach-Object {$_.PSObject.TypeNames.Insert(0, "ServiceNow.Request")}
91+
$Result | ForEach-Object {$_.PSObject.TypeNames.Insert(0, "ServiceNow.RequestItem")}
9292
$Result
9393
}

0 commit comments

Comments
 (0)