Skip to content

Commit

Permalink
fix(core): fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonGL committed Sep 25, 2023
1 parent 0f09b21 commit 8bc2629
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/e2e/src/E2EInteractionManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -421,11 +421,11 @@ export default class E2EInteractionManager {
checkLastSnapshotChunk(lastChunk);
session.removeListener(
'HeapProfiler.addHeapSnapshotChunk',
dataHandler as AnyValue,
dataHandler,
);
session.removeListener(
'HeapProfiler.reportHeapSnapshotProgress',
progressHandler,
progressHandler as AnyValue,
);
writeStream.end();
}
Expand Down

0 comments on commit 8bc2629

Please sign in to comment.