Skip to content

Commit

Permalink
fix: Test
Browse files Browse the repository at this point in the history
  • Loading branch information
cyaiox committed Dec 14, 2023
1 parent 8fc5cc3 commit 98561fd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/item/sagas.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ describe('when handling the save item request action', () => {
})
})

describe('and video file size is larger than 4MB', () => {
describe('and video file size is larger than 250MB', () => {
it('should put a saveItemFailure action with video too big message', () => {
return expectSaga(itemSaga, builderAPI, builderClient)
.provide([
Expand All @@ -212,7 +212,7 @@ describe('when handling the save item request action', () => {
saveItemFailure(
item,
{ ...contents, [VIDEO_PATH]: blob },
'File size limit is 4MB. Please reduce the size of the file and try again.'
'File size limit is 250MB. Please reduce the size of the file and try again.'
)
)
.dispatch(saveItemRequest(item, { ...contents, [VIDEO_PATH]: blob }))
Expand Down

0 comments on commit 98561fd

Please sign in to comment.