File tree Expand file tree Collapse file tree 3 files changed +2
-2
lines changed Expand file tree Collapse file tree 3 files changed +2
-2
lines changed File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -361,15 +361,15 @@ export class DebugManager {
361
361
362
362
const separator = included . find ( ( s ) => s . indexOf ( ":" ) >= 0 ) === undefined ? ":" : ";" ;
363
363
364
- args . push ( `robotcode.debugger. modifiers.ByLongName${ separator } ${ included . join ( separator ) } ` ) ;
364
+ args . push ( `robotcode.modifiers.ByLongName${ separator } ${ included . join ( separator ) } ` ) ;
365
365
}
366
366
367
367
if ( excluded . length > 0 ) {
368
368
args . push ( "--prerunmodifier" ) ;
369
369
370
370
const separator = included . find ( ( s ) => s . indexOf ( ":" ) >= 0 ) === undefined ? ":" : ";" ;
371
371
372
- args . push ( `robotcode.debugger. modifiers.ExcludedByLongName${ separator } ${ excluded . join ( separator ) } ` ) ;
372
+ args . push ( `robotcode.modifiers.ExcludedByLongName${ separator } ${ excluded . join ( separator ) } ` ) ;
373
373
}
374
374
375
375
const testLaunchConfig : { [ Key : string ] : unknown } =
You can’t perform that action at this time.
0 commit comments