Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
wkrzywiec committed Nov 30, 2024
1 parent 312b4c5 commit a5b8986
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions services/mankkoo/tests/views_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,27 +91,27 @@ def a_current_total_savings_distribution_view_is_updated():
result = views.load_view(views.current_savings_distribution_key)
return result == [
{
"type": "investments",
"total": 100,
"percentage": 0.0995
},
{
"type": "checking",
"type": "Checking Accounts",
"total": 370.21999999999997,
"percentage": 0.3685
},
{
"type": "savings",
"type": "Savings Accounts",
"total": 145.78,
"percentage": 0.1451
},
{
"type": "stocks",
"type": "Investments",
"total": 100,
"percentage": 0.0995
},
{
"type": "Stocks & ETFs",
"total": 333.23,
"percentage": 0.3316
},
{
"type": "retirement",
"type": "Retirement",
"total": 55.55,
"percentage": 0.0553
}
Expand Down

0 comments on commit a5b8986

Please sign in to comment.