[go: up one dir, main page]

Skip to content

Commit

Permalink
fix: updating type for test blocking dependency updates (#1282)
Browse files Browse the repository at this point in the history
Thank you for opening a Pull Request! Before submitting your PR, there are a few things you can do to make sure it goes smoothly:
- [x] Make sure to open an issue as a [bug/issue](https://togithub.com/googleapis/nodejs-bigquery/issues/new/choose) before writing your code!  That way we can discuss the change, evaluate designs, and agree on the general idea
- [x] Ensure the tests and linter pass
- [x] Code coverage does not decrease (if any source code was changed)
- [x] Appropriate docs were updated (if necessary)

Fixes #1269  🦕
  • Loading branch information
loferris committed Sep 27, 2023
1 parent 0280dfc commit 1dbe0fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/rowQueue.ts
Expand Up @@ -218,7 +218,7 @@ describe('Queues', () => {
});

it('should cancel any pending insert calls', () => {
const fakeHandle = 1234 as unknown as NodeJS.Timer;
const fakeHandle = 1234 as unknown as NodeJS.Timeout;
const stub = sandbox.stub(global, 'clearTimeout').withArgs(fakeHandle);

queue.pending = fakeHandle;
Expand Down

0 comments on commit 1dbe0fe

Please sign in to comment.