From 656e5dcce132716b39005814407224f989aa8c2d Mon Sep 17 00:00:00 2001 From: Stefan Majewsky Date: Fri, 31 Jul 2026 21:39:56 +0200 Subject: replace types Handle, DB, Conn, Tx with their gg/gsql equivalents --- runtimeindex_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'runtimeindex_test.go') diff --git a/runtimeindex_test.go b/runtimeindex_test.go index 59044c4..dd65b07 100644 --- a/runtimeindex_test.go +++ b/runtimeindex_test.go @@ -8,6 +8,7 @@ import ( "testing" "go.xyrillian.de/gg/assert" + "go.xyrillian.de/gg/gsql" "go.xyrillian.de/oblast" "go.xyrillian.de/oblast/internal/testhelpers/mock" "go.xyrillian.de/oblast/internal/testhelpers/must" @@ -16,7 +17,7 @@ import ( func TestRuntimeIndex(t *testing.T) { ctx := t.Context() md := mock.NewDriver() - db := oblast.NewDB(sql.OpenDB(md)) + db := gsql.NewDB(sql.OpenDB(md)) type basicRecord struct { ID int64 `db:"id"` -- cgit v1.3.1