From 8e1014af7e89daaaeccd756c68e2478bfbe06a8c Mon Sep 17 00:00:00 2001 From: ogerly Date: Wed, 11 Aug 2021 17:54:40 +0200 Subject: [PATCH] step4 --- .../views/Pages/AccountOverview/GddTransactionList.spec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js index 1c71b7f6c..fd5b5e1cc 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js @@ -119,15 +119,15 @@ describe('GddTransactionList', () => { }) it('shows the message of the transaction', () => { - expect(transaction.findAll('div').at(5).text()).toContain('Alles Gute zum Geburtstag') + expect(transaction.findAll('div').at(4).text()).toContain('Alles Gute zum Geburtstag') }) it('shows the date of the transaction', () => { - expect(transaction.findAll('div').at(8).text()).toContain('Tue May 25 2021') + expect(transaction.findAll('div').at(9).text()).toContain('Tue May 25 2021') }) it('shows the decay calculation', () => { - expect(transaction.findAll('div').at(9).text()).toContain('-0.5') + expect(transaction.findAll('div').at(10).text()).toContain('-0.5') }) })