summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlu0r1ne <flur01ne@flu0r1ne.net>2021-09-03 20:41:11 -0500
committerFlu0r1ne <flur01ne@flu0r1ne.net>2021-09-03 20:41:11 -0500
commit8fa0c34eac027c69a0fce8b5a8251e394cd4d888 (patch)
tree60f3c0a42526f8552713eeaaae874e7347982a6b
parent7671f58c301ffb22bb49a1de6f87b6db6865ff13 (diff)
downloaddeb-planr-8fa0c34eac027c69a0fce8b5a8251e394cd4d888.tar.xz
deb-planr-8fa0c34eac027c69a0fce8b5a8251e394cd4d888.zip
Don't export testcase LUT
-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]