aboutsummaryrefslogtreecommitdiff
path: root/runtimeindex_test.go
diff options
context:
space:
mode:
authorStefan Majewsky <majewsky@gmx.net>2026-07-31 21:39:56 +0200
committerStefan Majewsky <majewsky@gmx.net>2026-07-31 23:35:23 +0200
commit656e5dcce132716b39005814407224f989aa8c2d (patch)
treeab0a6d3a046170f0ace6a6e4ab3668ce0af811ae /runtimeindex_test.go
parenta2f8d7a68f324d5b4086148571f990409425e22a (diff)
downloadgo-oblast-656e5dcce132716b39005814407224f989aa8c2d.tar.gz
replace types Handle, DB, Conn, Tx with their gg/gsql equivalents
Diffstat (limited to 'runtimeindex_test.go')
-rw-r--r--runtimeindex_test.go3
1 files changed, 2 insertions, 1 deletions
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"`