summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--runner.go6
1 files changed, 3 insertions, 3 deletions
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]