tests passing

This commit is contained in:
Bel LaPointe
2023-10-27 19:27:25 -06:00
parent c3d0498a89
commit 04a79add26
2 changed files with 5 additions and 5 deletions

View File

@@ -90,10 +90,10 @@ func TestGetMonthlyAutoContributionRate(t *testing.T) {
if len(got) != 2 {
t.Error(got)
}
if got["x"] != 4 {
if got["x"] != 0 { // too few contribution
t.Error(got["x"])
}
if got["y"] != 3 {
if got["y"] != 0 { // too few contribution
t.Error(got["y"])
}
}