export existing contribution predictor

This commit is contained in:
Bel LaPointe
2023-10-27 19:28:48 -06:00
parent 04a79add26
commit 7e7488af2e
2 changed files with 4 additions and 4 deletions

View File

@@ -98,10 +98,10 @@ func TestGetMonthlyAutoContributionRate(t *testing.T) {
}
}
func TestNewAutoContributionPredictor(t *testing.T) {
func TestNewContributionPredictor(t *testing.T) {
name := "x"
currency := ledger.USD
predictor := newAutoContributionPredictor(map[string]ledger.Balance{
predictor := NewContributionPredictor(map[string]ledger.Balance{
name: {currency: 10},
"y": {"XYZ": 3},
})