Skip to content

Commit 088be93

Browse files
authored
Update dumps status (#669)
1 parent 8b92da8 commit 088be93

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ export interface Update {
175175

176176
export interface EnqueuedDump {
177177
uid: string
178-
status: 'processing' | 'dump_process_failed' | 'done'
178+
status: 'in_progress' | 'failed' | 'done'
179179
}
180180

181181
/*

tests/dump_tests.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ describe.each([
1919
test(`${permission} key: create a new dump`, async () => {
2020
await client.createDump().then((response) => {
2121
expect(response.uid).toBeDefined()
22-
expect(response.status).toEqual('processing')
22+
expect(response.status).toEqual('in_progress')
2323
})
2424
})
2525

0 commit comments

Comments
 (0)