Skip to content

Commit

Permalink
Try to fix node 4 build with changing lodash functions imports
Browse files Browse the repository at this point in the history
  • Loading branch information
try-again-apps committed Dec 1, 2016
1 parent bb87f50 commit ec3bcec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/stringReducer-test.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import _sample from 'lodash/sample';
import _sample from 'lodash.sample';
import { stringReducer } from '../src';

const changeActions = ['CHANGE_ACTION1', 'CHANGE_ACTION2', 'CHANGE_ACTION3'];
Expand All @@ -12,7 +12,7 @@ describe("stringReducer", () => {
const reducer = stringReducer(changeActions, resetActions, ['path']);
const action = { type: "@@INIT" };
expect(reducer(undefined, action)).toBe('');
});
});
});

describe("no initial state, unknown action", () => {
Expand Down

0 comments on commit ec3bcec

Please sign in to comment.