Skip to content

Commit

Permalink
fix(tests): fixed typo in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kwelch committed Jun 9, 2017
1 parent 0f164e2 commit 9a0ddf2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/__snapshots__/index.spec.js.snap
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
exports[`entitiesReducer should allow customer reducers 1`] = `
exports[`entitiesReducer should allow custom reducers 1`] = `
Object {
"users": Object {},
}
Expand Down
2 changes: 1 addition & 1 deletion src/index.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ describe('entitiesReducer', () => {
expect(newState).toEqual(initialState);
});

it('should allow customer reducers ', () => {
it('should allow custom reducers', () => {
const customUserReducer = (state = {}, action) => {
switch (action.type) {
case "ENTITY/DELETE": {
Expand Down

0 comments on commit 9a0ddf2

Please sign in to comment.