Skip to content

Commit

Permalink
Update dumps status (#669)
Browse files Browse the repository at this point in the history
  • Loading branch information
curquiza authored Oct 29, 2020
1 parent 8b92da8 commit 088be93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export interface Update {

export interface EnqueuedDump {
uid: string
status: 'processing' | 'dump_process_failed' | 'done'
status: 'in_progress' | 'failed' | 'done'
}

/*
Expand Down
2 changes: 1 addition & 1 deletion tests/dump_tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ describe.each([
test(`${permission} key: create a new dump`, async () => {
await client.createDump().then((response) => {
expect(response.uid).toBeDefined()
expect(response.status).toEqual('processing')
expect(response.status).toEqual('in_progress')
})
})

Expand Down

0 comments on commit 088be93

Please sign in to comment.