Skip to content

Commit dddab5d

Browse files
jonny-no1timdorr
authored andcommitted
Replace unnecessary template literals (#2749)
1 parent 22d15b0 commit dddab5d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/recipes/WritingTests.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ const create = () => {
437437
We test that our middleware is calling the `getState`, `dispatch`, and `next` functions at the right time.
438438

439439
```js
440-
it(`passes through non-function action`, () => {
440+
it('passes through non-function action', () => {
441441
const { next, invoke } = create()
442442
const action = {type: 'TEST'}
443443
invoke(action)

0 commit comments

Comments
 (0)