From bc4acf939ff69e277735ea360770f49fbd286289 Mon Sep 17 00:00:00 2001 From: mattwr18 Date: Wed, 9 Oct 2019 10:31:26 +0200 Subject: [PATCH] Fix lint --- webapp/components/Registration/CreateUserAccount.spec.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/webapp/components/Registration/CreateUserAccount.spec.js b/webapp/components/Registration/CreateUserAccount.spec.js index 848be00e8..67a14b3c5 100644 --- a/webapp/components/Registration/CreateUserAccount.spec.js +++ b/webapp/components/Registration/CreateUserAccount.spec.js @@ -103,7 +103,9 @@ describe('CreateUserAccount', () => { it('displays success', async () => { await action() - expect(mocks.$t).toHaveBeenCalledWith('components.registration.create-user-account.success') + expect(mocks.$t).toHaveBeenCalledWith( + 'components.registration.create-user-account.success', + ) }) describe('after timeout', () => { @@ -131,7 +133,9 @@ describe('CreateUserAccount', () => { it('displays form errors', async () => { await action() - expect(mocks.$t).toHaveBeenCalledWith('components.registration.create-user-account.error') + expect(mocks.$t).toHaveBeenCalledWith( + 'components.registration.create-user-account.error', + ) }) }) })