Skip to content

Commit a287758

Browse files
committed
update type
1 parent d80b9db commit a287758

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

x-pack/legacy/plugins/uptime/public/state/effects/__tests__/fecth_effect.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ describe('fetch saga effect factory', () => {
6565
asyncAction.success,
6666
asyncAction.fail
6767
)(calledAction);
68-
let next = fetchEffect.next().value;
68+
let next = fetchEffect.next();
6969

70-
expect(next).toEqual(call(fetchStatus, calledAction.payload));
70+
expect(next.value).toEqual(call(fetchStatus, calledAction.payload));
7171

7272
const unexpectedErrorResult = put(asyncAction.fail(unExpectedError));
7373

0 commit comments

Comments
 (0)