From da526646cdde67f3d805d4ae899b4d1f23108a0c Mon Sep 17 00:00:00 2001 From: AlanJhu Date: Mon, 15 Jan 2024 11:10:54 +0800 Subject: [PATCH] fix: account test --- db/sqlc/account_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/sqlc/account_test.go b/db/sqlc/account_test.go index cbef189..130fb08 100644 --- a/db/sqlc/account_test.go +++ b/db/sqlc/account_test.go @@ -91,7 +91,7 @@ func TestListAccounts(t *testing.T) { arg := ListAccountsParams{ Owner: lastAccount.Owner, Limit: 5, - Offset: 5, + Offset: 0, } accounts, err := testQueries.ListAccounts(context.Background(), arg)