From 5bed5a15326fee988cad7bb18d4e079f6592ca21 Mon Sep 17 00:00:00 2001 From: John Date: Sun, 8 Mar 2020 12:18:07 +0800 Subject: [PATCH] improve unit testing case for driver feature og package gdb --- database/gdb/gdb_unit_z_driver_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/gdb/gdb_unit_z_driver_test.go b/database/gdb/gdb_unit_z_driver_test.go index 30b503d8e..84f05d00b 100644 --- a/database/gdb/gdb_unit_z_driver_test.go +++ b/database/gdb/gdb_unit_z_driver_test.go @@ -48,7 +48,7 @@ func (d *MyDriver) HandleSqlBeforeExec(sql string) string { func init() { // It here registers my custom driver in package initialization function "init". - // You can later using this type in the configuration. + // You can later use this type in the database configuration. gdb.Register(customDriverName, &MyDriver{}) }