Skip to content

Commit

Permalink
Remove extraneous await
Browse files Browse the repository at this point in the history
This was added while trying to debug a failing test. The function that's
being called is not a promise.
  • Loading branch information
Landon Grindheim authored and GitHub committed May 4, 2022
1 parent ddcb299 commit fe3f06e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __tests__/proxy-integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ integration('ProxyBuilder', () => {
await proxy.container.start()

const id = proxy.container.id
const proc = await spawnSync('docker', ['exec', id, 'printenv', 'https_proxy'])
const proc = spawnSync('docker', ['exec', id, 'printenv', 'https_proxy'])
const output = proc.stdout.toString().trim()
expect(output).toEqual(url)

Expand Down

0 comments on commit fe3f06e

Please sign in to comment.