Browse Source
Task/reorder attributes in cash portfolio calculator test (#7254)
Reorder attributes
pull/7255/head
Thomas Kaul
1 week ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
2 additions and
2 deletions
-
apps/api/src/app/portfolio/calculator/roai/portfolio-calculator-cash.spec.ts
|
|
|
@ -148,15 +148,15 @@ describe('PortfolioCalculator', () => { |
|
|
|
balances: [ |
|
|
|
{ |
|
|
|
accountId, |
|
|
|
id: randomUUID(), |
|
|
|
date: parseDate('2023-12-31'), |
|
|
|
id: randomUUID(), |
|
|
|
value: 1000, |
|
|
|
valueInBaseCurrency: 850 |
|
|
|
}, |
|
|
|
{ |
|
|
|
accountId, |
|
|
|
id: randomUUID(), |
|
|
|
date: parseDate('2024-12-31'), |
|
|
|
id: randomUUID(), |
|
|
|
value: 2000, |
|
|
|
valueInBaseCurrency: 1800 |
|
|
|
} |
|
|
|
|