Skip to content

Commit 79913c8

Browse files
committed
Fix formatting issues
1 parent 68bfb82 commit 79913c8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/client/testing/common/managers/baseTestManager.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -335,9 +335,9 @@ export abstract class BaseTestManager implements ITestManager {
335335
// Similarly, if running a specific test or test file, don't clear the cache (possible tests have some state information retained)
336336
const clearDiscoveredTestCache =
337337
runFailedTests ||
338-
moreInfo.Run_Specific_File ||
339-
moreInfo.Run_Specific_Class ||
340-
moreInfo.Run_Specific_Function
338+
moreInfo.Run_Specific_File ||
339+
moreInfo.Run_Specific_Class ||
340+
moreInfo.Run_Specific_Function
341341
? false
342342
: true;
343343
return this.discoverTests(cmdSource, clearDiscoveredTestCache, true, true)
@@ -500,7 +500,7 @@ export abstract class BaseTestManager implements ITestManager {
500500
const diagMsg = message.message ? message.message.split('\n')[0] : '';
501501
const diagnostic = new Diagnostic(
502502
stackStart.location.range,
503-
`${diagPrefix ? `${diagPrefix}: ` : 'Ok'}${diagMsg}`,
503+
`${diagPrefix ? `${diagPrefix}: ` : ''}${diagMsg}`,
504504
severity
505505
);
506506
diagnostic.code = message.code;

0 commit comments

Comments
 (0)