Skip to content
This repository was archived by the owner on May 17, 2019. It is now read-only.

Commit 4b0b7b8

Browse files
committed
Remove vestigial property from memoization test
1 parent fca2d93 commit 4b0b7b8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/__tests__/memoize.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,7 @@ import {memoize} from '../memoize';
1212
import type {Context} from '../types.js';
1313

1414
test('memoize', t => {
15-
// $FlowFixMe
16-
const mockCtx: Context = {
17-
memoized: new Map(),
18-
};
15+
const mockCtx: Context = ({}: any);
1916

2017
let counter = 0;
2118
const memoized = memoize(() => {

0 commit comments

Comments
 (0)