Skip to content

Commit

Permalink
Should fix broken configuration test.
Browse files Browse the repository at this point in the history
  • Loading branch information
LuisAverhoff committed Jun 12, 2020
1 parent d2efa60 commit ea46ba2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ember-simple-auth/tests/unit/configuration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ describe('Configuration', () => {
});

it('sets routeAfterAuthentication correctly', function() {
Configuration.load({ 'ember-simple-auth': { routeAfterAuthentication: '/some-route' } });
Configuration.load({ routeAfterAuthentication: '/some-route' });

expect(Configuration.routeAfterAuthentication).to.eql('/some-route');
});
});
});
});

0 comments on commit ea46ba2

Please sign in to comment.