Skip to content

Commit

Permalink
added missing identifier in text
Browse files Browse the repository at this point in the history
  • Loading branch information
jonbnewman committed Jan 30, 2020
1 parent 127113e commit b27d2be
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/index.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,9 @@ describe("mobx-store-provider", () => {

const TestComponent = () => {
const Provider = useProvider(storeIdentifier);
const testStore = createStore(() =>
TestStore.create({ name: firstName }),
const testStore = createStore(
() => TestStore.create({ name: firstName }),
storeIdentifier,
);
return (
<Provider value={testStore}>
Expand Down

0 comments on commit b27d2be

Please sign in to comment.