Fix auth test

This commit is contained in:
Alex Gleason 2023-07-21 13:11:36 -05:00
parent 40af1d91a4
commit 8df3470f87
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
import { Map as ImmutableMap, fromJS } from 'immutable';
import { Map as ImmutableMap } from 'immutable';
import {
AUTH_APP_CREATED,
@ -300,7 +300,7 @@ describe('auth reducer', () => {
it('sets the value of `me`', () => {
const action = {
type: SWITCH_ACCOUNT,
account: fromJS({ url: 'https://gleasonator.com/users/benis' }),
account: { url: 'https://gleasonator.com/users/benis' },
};
const result = reducer(undefined, action);