Skip to content

Commit

Permalink
fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
majewsky committed Nov 7, 2024
1 parent c81058c commit 542be9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/tasks/account_deletion.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ func (j *Janitor) deleteMarkedAccount(ctx context.Context, accountName models.Ac
return err
}
defer sqlext.RollbackUnlessCommitted(tx)
_, err = tx.Delete(&accountModel)
_, err = tx.Delete(accountModel)
if err != nil {
return err
}
Expand Down

0 comments on commit 542be9f

Please sign in to comment.