refactor: fix typos.

refactor: typo in whitelister file name.
This commit is contained in:
Fernandez Ludovic 2017-06-01 22:10:19 +02:00 committed by Ludovic Fernandez
parent 18d11e02d0
commit 63f9bccf9f
6 changed files with 8 additions and 8 deletions

View file

@ -36,7 +36,7 @@ func TestSplitAndTrimString(t *testing.T) {
input: " foo ,, bar ",
expected: []string{"foo", "bar"},
}, {
desc: "consecutive commas with witespace",
desc: "consecutive commas with whitespace",
input: " foo , , bar ",
expected: []string{"foo", "bar"},
}, {