Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
652 changes: 369 additions & 283 deletions Tests/Tokenizer/tokenizer-ps3.tests.ps1

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion Utilites/Tokenizer/Helpers.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if ((Test-Path -Path $xmlFilePath)){
# Check for Load or Parse errors when loading the XML file
$xml = New-Object System.Xml.XmlDocument
try {
$xml.Load((Get-ChildItem -Path $xmlFilePath).FullName)
$xml.Load($xmlFilePath)
return $true
}
catch [System.Xml.XmlException] {
Expand Down
Loading