@@ -953,16 +953,16 @@ export function activate(context: ExtensionContext): VSNetBeansAPI {
953953 testAdapter ?. registerRunInParallelProfile ( projects ) ;
954954 } ) ) ;
955955
956- context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.run.test' , async ( uri , methodName ?, nestedClass ?, launchConfiguration ?, testInParallel ?, projects ?) => {
956+ context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.run.test' , async ( uri , methodName ?, launchConfiguration ?, nestedClass ?, testInParallel ?, projects ?) => {
957957 await runDebug ( true , true , uri , methodName , nestedClass , launchConfiguration , false , testInParallel , projects ) ;
958958 } ) ) ;
959- context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.debug.test' , async ( uri , methodName ?, nestedClass ?, launchConfiguration ?) => {
959+ context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.debug.test' , async ( uri , methodName ?, launchConfiguration ?, nestedClass ?) => {
960960 await runDebug ( false , true , uri , methodName , nestedClass , launchConfiguration ) ;
961961 } ) ) ;
962- context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.run.single' , async ( uri , methodName ?, nestedClass ?, launchConfiguration ?) => {
962+ context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.run.single' , async ( uri , methodName ?, launchConfiguration ?, nestedClass ?) => {
963963 await runDebug ( true , false , uri , methodName , nestedClass , launchConfiguration ) ;
964964 } ) ) ;
965- context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.debug.single' , async ( uri , methodName ?, nestedClass ?, launchConfiguration ?) => {
965+ context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.debug.single' , async ( uri , methodName ?, launchConfiguration ?, nestedClass ?) => {
966966 await runDebug ( false , false , uri , methodName , nestedClass , launchConfiguration ) ;
967967 } ) ) ;
968968 context . subscriptions . push ( commands . registerCommand ( COMMAND_PREFIX + '.project.run' , async ( node , launchConfiguration ?) => {
0 commit comments