summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShulhan <ms@kilabit.info>2024-03-02 14:44:08 +0700
committerShulhan <ms@kilabit.info>2024-03-02 14:44:08 +0700
commit901b80fe4f9b5d38f26271b7d1da9dc8e445d97a (patch)
tree1d97d444aeaf592e42f093c59f2eff0c24187041
parentde299da1a940a65d0a1fd0a106aa1afe14242ab2 (diff)
downloadpakakeh.go-901b80fe4f9b5d38f26271b7d1da9dc8e445d97a.tar.xz
lib/sql: realign struct in test
-rw-r--r--lib/sql/meta_test.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/sql/meta_test.go b/lib/sql/meta_test.go
index 6586bf7d..3b92f2ba 100644
--- a/lib/sql/meta_test.go
+++ b/lib/sql/meta_test.go
@@ -9,17 +9,17 @@ import (
func TestMetaBind(t *testing.T) {
type bindCase struct {
- name string
val any
+ name string
}
type testCase struct {
desc string
driver string
- kind DMLKind
- bind []bindCase
expListName string
expListValue string
expIndex string
+ kind DMLKind
+ bind []bindCase
expNholder int
}