mirror of
https://github.com/aclindsa/moneygo.git
synced 2025-07-02 20:28:38 -04:00
testing: Don't omit the 0th elements when testing
This commit is contained in:
@ -364,7 +364,7 @@ func TestUpdateTransaction(t *testing.T) {
|
||||
|
||||
func TestDeleteTransaction(t *testing.T) {
|
||||
RunWith(t, &data[0], func(t *testing.T, d *TestData) {
|
||||
for i := 1; i < len(data[0].transactions); i++ {
|
||||
for i := 0; i < len(data[0].transactions); i++ {
|
||||
orig := data[0].transactions[i]
|
||||
curr := d.transactions[i]
|
||||
|
||||
|
Reference in New Issue
Block a user