Skip to content

Commit

Permalink
fixed broken integration test
Browse files Browse the repository at this point in the history
  • Loading branch information
benPearce1 committed Jan 30, 2023
1 parent 4dfb4ed commit 9cd09e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions __tests__/integration/integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -279,10 +279,10 @@ describe('integration tests', () => {
result.map(r => r.serverTaskId),
1000,
60000,
(serverTaskDetails: ServerTaskDetails): void => {
(serverTask: ServerTask): void => {
// eslint-disable-next-line no-console
console.log(
`Waiting for task ${serverTaskDetails.Task.Id}. Current status: ${serverTaskDetails.Task.State}, completed: ${serverTaskDetails.Progress.ProgressPercentage}%`
`Waiting for task ${serverTask.Id}. Current status: ${serverTask.State}`
)
}
)
Expand Down

0 comments on commit 9cd09e2

Please sign in to comment.