Skip to content

Commit b7ab4f8

Browse files
koumatsumotobrandonroberts
authored andcommitted
fix(schematics): correct spec description in reducer template (#1269)
1 parent 4223ff9 commit b7ab4f8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/schematics/src/reducer/files/__name@dasherize@if-flat__/__name@dasherize__.reducer__dot__spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import { reducer, initialState } from './<%= dasherize(name) %>.reducer';
22

33
describe('<%= classify(name) %> Reducer', () => {
4-
describe('unknown action', () => {
5-
it('should return the initial state', () => {
4+
describe('an unknown action', () => {
5+
it('should return the previous state', () => {
66
const action = {} as any;
77

88
const result = reducer(initialState, action);

0 commit comments

Comments
 (0)