Skip to content

Commit 5cc80f5

Browse files
committed
cast to any
1 parent 0aae09a commit 5cc80f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test.options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ describe('Options', () => {
307307
it('should allow using a GoogleAuth object for auth', async () => {
308308
const google = new GoogleApis();
309309
const auth = new GoogleAuth();
310-
const stub = sandbox.stub(auth, 'request').resolves({} as GaxiosResponse);
310+
const stub = sandbox.stub(auth, 'request').resolves({} as any);
311311
// global options
312312
google.options({auth: auth as GoogleAuth<AuthClient>});
313313
// per-API options

0 commit comments

Comments
 (0)