Skip to content

Commit 3ae3c12

Browse files
committed
Fix typo in variable name
1 parent fb2f7c0 commit 3ae3c12

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ctest.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ export class CTestDriver implements vscode.Disposable {
19211921
let overallSuccess = true;
19221922
for (const [project, targets] of foundTarget) {
19231923
const execTargets = await project.executableTargets;
1924-
const accmulatedTestList: vscode.TestItem[] = [];
1924+
const accumulatedTestList: vscode.TestItem[] = [];
19251925
const accumulatedTargets: string[] = [];
19261926
let success: boolean = true;
19271927
for (const [targetPath, testList] of targets) {
@@ -1930,7 +1930,7 @@ export class CTestDriver implements vscode.Disposable {
19301930
const normalizedTargetPath = util.platformNormalizePath(targetPath);
19311931
const execTarget = execTargets.find(t => util.platformNormalizePath(t.path) === normalizedTargetPath);
19321932
accumulatedTargets.push(execTarget ? execTarget.name : path.parse(targetPath).name);
1933-
accmulatedTestList.push(...testList);
1933+
accumulatedTestList.push(...testList);
19341934
}
19351935
try {
19361936
if (extensionManager !== undefined && extensionManager !== null) {
@@ -1945,7 +1945,7 @@ export class CTestDriver implements vscode.Disposable {
19451945
}
19461946
if (!success) {
19471947
overallSuccess = false;
1948-
accmulatedTestList.forEach(test => {
1948+
accumulatedTestList.forEach(test => {
19491949
this.ctestErrored(test, run, { message: localize('build.failed', 'Build failed') });
19501950
});
19511951
}

0 commit comments

Comments
 (0)