Skip to content

Commit

Permalink
fix(reducers/products): arrange path for ActionTypes
Browse files Browse the repository at this point in the history
  • Loading branch information
aneurysmjs committed Aug 31, 2019
1 parent 9f7d3aa commit 3385d83
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import axiosMock from 'axios';
import configureMockStore from 'redux-mock-store';

import { apiMiddleware } from '@/store/middlewares/apiMiddleware';
import { apiMiddleware } from '@/store/config/middlewares/apiMiddleware';

import fetchProducts from './fetchProducts';

Expand Down
2 changes: 1 addition & 1 deletion src/app/store/modules/products/reducers/products.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
GET_PRODUCTS_FAILURE,
GET_PRODUCTS_REQUEST,
GET_PRODUCTS_SUCCESS,
} from '../../ActionTypes';
} from '@/store/ActionTypes';

const productsData = [
{
Expand Down

0 comments on commit 3385d83

Please sign in to comment.