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 {
361361
362362 const separator = included . find ( ( s ) => s . indexOf ( ":" ) >= 0 ) === undefined ? ":" : ";" ;
363363
364- args . push ( `robotcode.debugger. modifiers.ByLongName${ separator } ${ included . join ( separator ) } ` ) ;
364+ args . push ( `robotcode.modifiers.ByLongName${ separator } ${ included . join ( separator ) } ` ) ;
365365 }
366366
367367 if ( excluded . length > 0 ) {
368368 args . push ( "--prerunmodifier" ) ;
369369
370370 const separator = included . find ( ( s ) => s . indexOf ( ":" ) >= 0 ) === undefined ? ":" : ";" ;
371371
372- args . push ( `robotcode.debugger. modifiers.ExcludedByLongName${ separator } ${ excluded . join ( separator ) } ` ) ;
372+ args . push ( `robotcode.modifiers.ExcludedByLongName${ separator } ${ excluded . join ( separator ) } ` ) ;
373373 }
374374
375375 const testLaunchConfig : { [ Key : string ] : unknown } =
You can’t perform that action at this time.
0 commit comments