Skip to content

Commit

Permalink
Remove spurious abort() calls from the blockheight exceedence tests (
Browse files Browse the repository at this point in the history
  • Loading branch information
steveluscher authored Oct 8, 2024
1 parent e9d1376 commit d9aa587
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ describe('createBlockHeightExceedencePromiseFactory', () => {
it('throws errors thrown from the epoch info fetcher', async () => {
expect.assertions(1);
const abortController = new AbortController();
abortController.abort();
getEpochInfoRequestSender.mockRejectedValue(new Error('o no'));
await expect(
getBlockHeightExceedencePromise({
Expand All @@ -215,7 +214,6 @@ describe('createBlockHeightExceedencePromiseFactory', () => {
it('throws errors thrown from the slot subscription', async () => {
expect.assertions(1);
const abortController = new AbortController();
abortController.abort();
createSubscriptionIterable.mockRejectedValue(new Error('o no'));
await expect(
getBlockHeightExceedencePromise({
Expand Down

0 comments on commit d9aa587

Please sign in to comment.