Skip to content

Commit

Permalink
Merge pull request #14 from phoenix-actions/bug/12
Browse files Browse the repository at this point in the history
fixes #12
  • Loading branch information
IanMoroney authored May 27, 2022
2 parents 5a4f058 + fa1caa9 commit beb4227
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/java-junit/java-junit-parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export class JavaJunitParser implements TestParser {
}
}

private exceptionThrowSource(stackTrace: string): {filePath: string; line: number} | undefined {
private exceptionThrowSource(stackTrace = ''): {filePath: string; line: number} | undefined {
const lines = stackTrace.split(/\r?\n/)
const re = /^at (.*)\((.*):(\d+)\)$/

Expand Down

0 comments on commit beb4227

Please sign in to comment.