File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export class DebugTracker implements vscode.DebugAdapterTracker {
57
57
const line : string = ( message . body . output as string ) . replace ( / \n / , '' ) ;
58
58
this . run . appendOutput ( line + '\r\n' ) ;
59
59
if ( this . className === undefined ) {
60
- const classBegin = line . match ( / ^ ( [ % \d A - Z a - z ] [ \d A - Z a - z \. ] * ) b e g i n s \. \. \. $ / ) ;
60
+ const classBegin = line . match ( / ^ ( [ % \d A - Z a - z ] [ \d A - Z a - z 0 - 9 \. ] * ) b e g i n s \. \. \. / ) ;
61
61
if ( classBegin ) {
62
62
this . className = classBegin [ 1 ] ;
63
63
}
@@ -70,7 +70,7 @@ export class DebugTracker implements vscode.DebugAdapterTracker {
70
70
}
71
71
72
72
if ( this . testMethodName === undefined ) {
73
- const methodBegin = line . match ( / ^ T e s t ( [ % \d A - Z a - z ] [ \d A - Z a - z ] * ) .* b e g i n s \. \. \. $ / ) ;
73
+ const methodBegin = line . match ( / ^ T e s t ( [ \d A - Z a - z 0 - 9 ] + ) .* b e g i n s \. \. \. / ) ;
74
74
if ( methodBegin ) {
75
75
this . testMethodName = methodBegin [ 1 ] ;
76
76
this . methodTest = this . methodTestMap . get ( `${ this . testingIdBase } :${ this . className } :Test${ this . testMethodName } ` ) ;
You can’t perform that action at this time.
0 commit comments