File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ export async function testSolution(uri?: vscode.Uri): Promise<void> {
46
46
label : "$(refresh) Re- run last..." ,
47
47
description : "" ,
48
48
detail : "Test with the cases which were last run" ,
49
- value : ":rerun"
50
- }
49
+ value : ":rerun" ,
50
+ } ,
51
51
) ;
52
52
const choice : IQuickItemEx < string > | undefined = await vscode . window . showQuickPick ( picks ) ;
53
53
if ( ! choice ) {
@@ -84,8 +84,7 @@ export async function testSolution(uri?: vscode.Uri): Promise<void> {
84
84
case ":rerun" :
85
85
if ( leetCodeExecutor . lastTestString ) {
86
86
result = await leetCodeExecutor . testSolution ( filePath , leetCodeExecutor . lastTestString ) ;
87
- }
88
- else { // run default cases
87
+ } else { // run default cases
89
88
result = await leetCodeExecutor . testSolution ( filePath ) ;
90
89
}
91
90
break ;
You can’t perform that action at this time.
0 commit comments