From 8ad0b966007c4cf67bf177f9c20074ef4586b57c Mon Sep 17 00:00:00 2001 From: crockwave Date: Mon, 6 Jul 2020 14:52:01 -0500 Subject: [PATCH] fix linter --- app/soapbox/reducers/__tests__/auth-test.js | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/app/soapbox/reducers/__tests__/auth-test.js b/app/soapbox/reducers/__tests__/auth-test.js index 237653076..bd8b461f4 100644 --- a/app/soapbox/reducers/__tests__/auth-test.js +++ b/app/soapbox/reducers/__tests__/auth-test.js @@ -1,9 +1,7 @@ import reducer from '../auth'; -import { Map as ImmutableMap, List as ImmutableList, fromJS } from 'immutable'; +import { Map as ImmutableMap, List as ImmutableList } from 'immutable'; import * as actions from '../auth'; -const auth = - describe('auth reducer', () => { it('should return the initial state', () => { expect(reducer(undefined, {})).toEqual(ImmutableMap({ @@ -30,7 +28,7 @@ describe('auth reducer', () => { refresh_token: 'aydRA4eragIhavCdAyg6QQnDJmiMbdc-oEBvHYcW_PQ', website: null, id: '113', - access_token: 'pbXS8HkoWodrAt_QE1NENcwqigxgWr3P1RIQCKMN0Os' + access_token: 'pbXS8HkoWodrAt_QE1NENcwqigxgWr3P1RIQCKMN0Os', }, user: { access_token: 'UVBP2e17b4pTpb_h8fImIm3F5a66IBVb-JkyZHs4gLE', @@ -38,10 +36,10 @@ describe('auth reducer', () => { me: 'https://social.teci.world/users/curtis', refresh_token: 'c2DpbVxYZBJDogNn-VBNFES72yXPNUYQCv0CrXGOplY', scope: 'read write follow push admin', - token_type: 'Bearer' + token_type: 'Bearer', }, - tokens: [] - } + tokens: [], + }, }; const action = { type: actions.AUTH_APP_CREATED,