diff options
author | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-03 20:41:11 -0500 |
---|---|---|
committer | Flu0r1ne <flur01ne@flu0r1ne.net> | 2021-09-03 20:41:11 -0500 |
commit | 8fa0c34eac027c69a0fce8b5a8251e394cd4d888 (patch) | |
tree | 60f3c0a42526f8552713eeaaae874e7347982a6b /runner.go | |
parent | 7671f58c301ffb22bb49a1de6f87b6db6865ff13 (diff) | |
download | planr-8fa0c34eac027c69a0fce8b5a8251e394cd4d888.tar.xz planr-8fa0c34eac027c69a0fce8b5a8251e394cd4d888.zip |
Don't export testcase LUT
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] |