From 9a8d57fe0e86645a124a7ff30ba6e171d4325ddf Mon Sep 17 00:00:00 2001 From: Furkan Sahin Date: Fri, 3 Sep 2021 20:41:11 -0500 Subject: Don't export testcase LUT --- runner.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'runner.go') diff --git a/runner.go b/runner.go index 9014b8c..c0c926a 100644 --- a/runner.go +++ b/runner.go @@ -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] -- cgit v1.2.3