Skip to content

Commit 0f343de

Browse files
committed
Updated test snapshots
1 parent a1ca40d commit 0f343de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/__snapshots__/index.spec.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Reso
376376
};
377377

378378
export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions): Promise<Headers> => {
379-
const [token, username, password, additionalHeaders] = Promise.all([
379+
const [token, username, password, additionalHeaders] = await Promise.all([
380380
resolve(options, config.TOKEN),
381381
resolve(options, config.USERNAME),
382382
resolve(options, config.PASSWORD),
@@ -3471,7 +3471,7 @@ export const resolve = async <T>(options: ApiRequestOptions, resolver?: T | Reso
34713471
};
34723472

34733473
export const getHeaders = async (config: OpenAPIConfig, options: ApiRequestOptions): Promise<Headers> => {
3474-
const [token, username, password, additionalHeaders] = Promise.all([
3474+
const [token, username, password, additionalHeaders] = await Promise.all([
34753475
resolve(options, config.TOKEN),
34763476
resolve(options, config.USERNAME),
34773477
resolve(options, config.PASSWORD),

0 commit comments

Comments
 (0)