sweepbatcher: fix mock TotalSweptAmount

Forgot to return the calculated total value.
This commit is contained in:
Boris Nagaev 2025-04-08 18:07:13 -03:00
parent 7636ffdc64
commit c036c2adbd
No known key found for this signature in database

View file

@ -212,5 +212,5 @@ func (s *StoreMock) TotalSweptAmount(ctx context.Context, batchID int32) (
}
}
return 0, nil
return total, nil
}