Skip to content

Commit 4ece593

Browse files
committed
Improve a variable name
1 parent 2b07450 commit 4ece593

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/debugTracker.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,9 +132,9 @@ export class DebugTracker implements vscode.DebugAdapterTracker {
132132
const assertFailedMatch = line.match(/^(Assert\w+):(.*) \(failed\) <<====/);
133133
if (assertFailedMatch) {
134134
//const macroName = assertFailedMatch[1];
135-
const message = assertFailedMatch[2];
135+
const failedMessage = assertFailedMatch[2];
136136
//console.log(`Class ${this.className}, Test-method ${this.testMethodName}, macroName ${macroName}, outcome 'failed', message=${message}`);
137-
this.failureMessages.push({ message: message });
137+
this.failureMessages.push({ message: failedMessage });
138138
} else {
139139
const assertSkippedMatch = line.match(/^ (Test\w+):(.*) \(skipped\)$/);
140140
if (assertSkippedMatch) {

0 commit comments

Comments
 (0)