Skip to content

Commit 4b38196

Browse files
committed
Fix ActionWithInitialState import
1 parent 6cf2a3a commit 4b38196

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/expect.js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import expect from 'expect.js';
22
import assertions from '../assertions';
3-
import ActionWithInitialState from '../ActionWithInitialState';
3+
import ActionWithInitialState from '../actionWithInitialState';
44

55
function withState(state) {
66
return expect(new ActionWithInitialState(this.obj, state));

src/should/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import should from 'should';
22
import assertions from '../assertions';
3-
import ActionWithInitialState from '../ActionWithInitialState';
3+
import ActionWithInitialState from '../actionWithInitialState';
44

55
function withState(state) {
66
this.obj = new ActionWithInitialState(this.obj, state);

0 commit comments

Comments
 (0)