Fix some missing parallels

This commit is contained in:
Aaron L 2016-06-19 14:50:35 -07:00
parent 14a335cc99
commit 2819c1c889

View file

@ -42,6 +42,8 @@ func TestCommaList(t *testing.T) {
}
func TestTitleCaseCommaList(t *testing.T) {
t.Parallel()
cols := []string{
"test_id",
"test_thing",
@ -63,6 +65,8 @@ func TestTitleCaseCommaList(t *testing.T) {
}
func TestCamelCaseCommaList(t *testing.T) {
t.Parallel()
cols := []string{
"test_id",
"test_thing",
@ -283,6 +287,8 @@ func TestInsertParamFlags(t *testing.T) {
}
func TestInsertParamVariables(t *testing.T) {
t.Parallel()
out := InsertParamVariables("o.", testColumns)
if out != "o.FriendColumn, o.EnemyColumnThing" {
t.Error("Wrong output:", out)