Skip to content

Commit

Permalink
✅ Fix encoding test
Browse files Browse the repository at this point in the history
  • Loading branch information
brianary committed Sep 24, 2023
1 parent 28af2ca commit 232413d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/ConvertTo-XmlElements.Tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Describe 'ConvertTo-XmlElements' -Tag ConvertTo-XmlElements -Skip:$skip {
@{ InputObject = 1UY; SkipRoot = $false; Result = '<Byte>1</Byte>' }
@{ InputObject = 2L; SkipRoot = $false; Result = '<Int64>2</Int64>' }
@{ InputObject = 15E3ULPB; SkipRoot = $false; Result = '<UInt64>16888498602639360000</UInt64>' }
@{ InputObject = "Don't Panic!"; SkipRoot = $false; Result = '<String>Don&#39;t Panic!</String>' }
@{ InputObject = "Don't Panic!"; SkipRoot = $false; Result = '<String>Don&apos;t Panic!</String>' }
@{ InputObject = 1,2,3; SkipRoot = $false
Result = "<ObjectArray>$NL<Item>1</Item>$NL<Item>2</Item>$NL<Item>3</Item>$NL</ObjectArray>" }
@{ InputObject = @{html=@{body=@{p='Some text.'}}}
Expand Down

0 comments on commit 232413d

Please sign in to comment.