Skip to content

Commit 49c4864

Browse files
Update projects/ngrx.io/content/examples/testing-store/src/app/state/books.reducer.spec.ts
Co-authored-by: Tim Deschryver <28659384+timdeschryver@users.noreply.github.com>
1 parent 984c160 commit 49c4864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

projects/ngrx.io/content/examples/testing-store/src/app/state/books.reducer.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ describe('BooksReducer', () => {
3131
const state = fromReducer.booksReducer(initialState, action);
3232

3333
expect(state).toEqual(newState);
34-
expect(state).not.toEqual(initialState);
34+
expect(state).not.toBe(initialState);
3535
});
3636
});
3737
});

0 commit comments

Comments
 (0)