Skip to content

Commit

Permalink
fix(react): remove duplicated redux slice suffix in spec import
Browse files Browse the repository at this point in the history
  • Loading branch information
leosvelperez committed Dec 2, 2024
1 parent aa75b6a commit d388bd0
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,4 +1,4 @@
import { fetch<%= className %>, <%= propertyName %>Adapter, <%= propertyName %>Reducer } from './<%= fileName %>.slice';
import { fetch<%= className %>, <%= propertyName %>Adapter, <%= propertyName %>Reducer } from './<%= fileName %>';

describe('<%= propertyName %> reducer', () => {
it('should handle initial state', () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { fetch<%= className %>, <%= propertyName %>Adapter, <%= propertyName %>Reducer } from './<%= fileName %>.slice';
import { fetch<%= className %>, <%= propertyName %>Adapter, <%= propertyName %>Reducer } from './<%= fileName %>';

describe('<%= propertyName %> reducer', () => {
it('should handle initial state', () => {
Expand Down

0 comments on commit d388bd0

Please sign in to comment.