From 53cda6cda9f770da793e8c82abd07b2ec71dbbe6 Mon Sep 17 00:00:00 2001 From: ogerly Date: Sat, 17 Jul 2021 19:05:17 +0200 Subject: [PATCH] changes reviews --- .../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 279f4358f..5ff1a7e32 100644 --- a/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js +++ b/frontend/src/views/Pages/AccountOverview/GddTransactionList.spec.js @@ -118,7 +118,7 @@ describe('GddTransactionList', () => { expect(transaction.findAll('div').at(0).text()).toContain('Bob der Baumeister') }) - it('shows the memo of the receiver', () => { + it('shows the message of the transaction', () => { expect(transaction.findAll('div').at(5).text()).toContain('Alles Gute zum Geburtstag') }) @@ -180,11 +180,11 @@ describe('GddTransactionList', () => { expect(transaction.findAll('div').at(2).text()).toContain('+ 314.98') }) - it('shows the name of the receiver', () => { + it('shows the name of the recipient', () => { expect(transaction.findAll('div').at(0).text()).toContain('Jan Ulrich') }) - it('shows the memo of the receiver', () => { + it('shows the message of the transaction', () => { expect(transaction.findAll('div').at(5).text()).toContain('Für das Fahrrad!') })