Skip to content

Commit 41baf49

Browse files
author
Nathan Esau
committed
fix lint problems
1 parent 9b2e2d5 commit 41baf49

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/commands/test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export async function testSolution(uri?: vscode.Uri): Promise<void> {
4646
label: "$(refresh) Re- run last...",
4747
description: "",
4848
detail: "Test with the cases which were last run",
49-
value: ":rerun"
50-
}
49+
value: ":rerun",
50+
},
5151
);
5252
const choice: IQuickItemEx<string> | undefined = await vscode.window.showQuickPick(picks);
5353
if (!choice) {
@@ -84,8 +84,7 @@ export async function testSolution(uri?: vscode.Uri): Promise<void> {
8484
case ":rerun":
8585
if (leetCodeExecutor.lastTestString) {
8686
result = await leetCodeExecutor.testSolution(filePath, leetCodeExecutor.lastTestString);
87-
}
88-
else { // run default cases
87+
} else { // run default cases
8988
result = await leetCodeExecutor.testSolution(filePath);
9089
}
9190
break;

0 commit comments

Comments
 (0)