Skip to content

Commit

Permalink
Fix: Remove unneded exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
Siphonophora committed Sep 25, 2020
1 parent c367d13 commit 94af6c5
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/JUnit.Xml.TestLogger/TestCaseNameParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,6 @@ public static ParsedName Parse(string fullyQualifedName)
parenthesisCount++;
}

if (thisChar == '\\')
{
throw new Exception("Found invalid characters");
}

if (thisChar == '(')
{
// If we found the beginning of the parenthesis block, we are back in default state
Expand Down

0 comments on commit 94af6c5

Please sign in to comment.