diff options
Diffstat (limited to 'runner.go')
-rw-r--r-- | runner.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,10 +25,10 @@ func (r Runner) adapterCfgs() []AdapterConfig { return cgs } -type TcTab map[string] []*TestCase +type tcTab map[string] []*TestCase -func (r Runner) buildTcLUT(tcs []TestCase) TcTab { - m := make(TcTab, 0) +func (r Runner) buildTcLUT(tcs []TestCase) tcTab { + m := make(tcTab, 0) for i := range tcs { tc := &tcs[i] |