File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ type tscInput struct {
28
28
29
29
func (test * tscInput ) run (t * testing.T , scenario string ) {
30
30
t .Helper ()
31
- t .Run (test .getTestName (scenario ), func (t * testing.T ) {
31
+ t .Run (test .getTestName (), func (t * testing.T ) {
32
32
t .Parallel ()
33
33
t .Run ("tsc baseline" , func (t * testing.T ) {
34
34
t .Parallel ()
@@ -83,8 +83,8 @@ func (test *tscInput) getTestNamePrefix() string {
83
83
return commandName + w
84
84
}
85
85
86
- func (test * tscInput ) getTestName (scenario string ) string {
87
- return test .getTestNamePrefix () + " " + scenario + ":: " + test . subScenario + " " + strings .Join (test .commandLineArgs , " " )
86
+ func (test * tscInput ) getTestName () string {
87
+ return test .subScenario + " " + strings .Join (test .commandLineArgs , " " )
88
88
}
89
89
90
90
func (test * tscInput ) getBaselineName (scenario string , suffix string ) (baseline.Options , string ) {
@@ -109,7 +109,7 @@ func (test *tscInput) startBaseline() *strings.Builder {
109
109
110
110
func (test * tscInput ) verifyCommandLineParsing (t * testing.T , scenario string ) {
111
111
t .Helper ()
112
- t .Run (test .getTestName (scenario ), func (t * testing.T ) {
112
+ t .Run (test .getTestName (), func (t * testing.T ) {
113
113
t .Parallel ()
114
114
t .Run ("baseline for the tsc compiles" , func (t * testing.T ) {
115
115
t .Parallel ()
You can’t perform that action at this time.
0 commit comments