From e6b408402a29f36ac9461802538aa7d5d3056103 Mon Sep 17 00:00:00 2001 From: Benjamin Cane Date: Sat, 6 Jul 2024 07:29:37 -0700 Subject: [PATCH] chore: fixing sql test --- pkg/callbacks/sql/sql_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/callbacks/sql/sql_test.go b/pkg/callbacks/sql/sql_test.go index 12a5feb6..fae2f367 100644 --- a/pkg/callbacks/sql/sql_test.go +++ b/pkg/callbacks/sql/sql_test.go @@ -171,8 +171,8 @@ func TestSQLQuery(t *testing.T) { // Parse returned SQL Data type rowData struct { - ID []byte `json:"id"` - Name []byte `json:"name"` + ID []uint8 `json:"id"` + Name []byte `json:"name"` } var records []rowData