Skip to content

Commit

Permalink
fix: typo in store_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
cukhoaimon committed Jan 31, 2024
1 parent bae48bd commit 89b89c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions db/sqlc/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
})

Expand Down Expand Up @@ -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,
})

Expand Down

0 comments on commit 89b89c6

Please sign in to comment.