From 89b89c64185e3653bf515452596705317dea9974 Mon Sep 17 00:00:00 2001 From: cukhoaimon Date: Thu, 1 Feb 2024 00:12:36 +0700 Subject: [PATCH] fix: typo in store_test.go --- db/sqlc/store_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/db/sqlc/store_test.go b/db/sqlc/store_test.go index 95af713..14e764b 100644 --- a/db/sqlc/store_test.go +++ b/db/sqlc/store_test.go @@ -23,7 +23,7 @@ func TestStore_TransferTxAccount(t *testing.T) { go func() { result, err := store.TransferTxAccount(context.Background(), TransferTxParams{ FromAccountID: wantFromAccount.ID, - ToAccountId: wantToAccount.ID, + ToAccountID: wantToAccount.ID, Amount: amount, }) @@ -137,7 +137,7 @@ func TestStore_TransferTxAccountDeadLock(t *testing.T) { go func() { _, err := store.TransferTxAccount(context.Background(), TransferTxParams{ FromAccountID: fromAccountID, - ToAccountId: toAccountID, + ToAccountID: toAccountID, Amount: amount, })