We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a38a28 commit f6a5aa9Copy full SHA for f6a5aa9
src/extension.ts
@@ -312,7 +312,7 @@ async function canDelegateToJavaTestRunner(uri: vscode.Uri): Promise<boolean> {
312
function launchTesting(uri: vscode.Uri, noDebug: boolean, progressReporter: IProgressReporter) {
313
const command: string = noDebug ? "java.test.editor.run" : "java.test.editor.debug";
314
vscode.commands.executeCommand(command, uri, progressReporter);
315
- if (compareVersions(getTestExtensionVersion(), "0.26.1") <= 0) {
+ if (compareVersions.compare(getTestExtensionVersion(), "0.26.1", "<=")) {
316
throw new utility.OperationCancelledError("");
317
}
318
0 commit comments