Delete useless duplicate method.

This commit is contained in:
Aaron L 2016-08-08 11:03:46 -07:00
parent 005218d61f
commit 89ec1cfdb7
2 changed files with 0 additions and 32 deletions

View file

@ -308,19 +308,3 @@ func TestSelectNames(t *testing.T) {
t.Error("Result was wrong, got:", result)
}
}
func TestWhereClause(t *testing.T) {
t.Parallel()
columns := []string{
"id",
"name",
"date",
}
result := WhereClause(columns)
if result != `"id"=$1 AND "name"=$2 AND "date"=$3` {
t.Error("Result was wrong, got:", result)
}
}