Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
fossamagna committed Nov 29, 2024
1 parent 8ac0e87 commit b30ad27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/backend-function/src/factory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ void describe('AmplifyFunctionFactory', () => {
ephemeralStorageSize: 10241,
}).getInstance(getInstanceProps),
new Error(
'ephemeralStorageSize must be a whole number between 128 and 10240 inclusive'
'ephemeralStorageSize must be a whole number between 512 and 10240 inclusive'
)
);
});
Expand All @@ -635,7 +635,7 @@ void describe('AmplifyFunctionFactory', () => {
() =>
defineFunction({
entry: './test-assets/default-lambda/handler.ts',
memoryMB: 512.5,
ephemeralStorageSize: 512.5,
}).getInstance(getInstanceProps),
new Error(
'ephemeralStorageSize must be a whole number between 512 and 10240 inclusive'
Expand Down

0 comments on commit b30ad27

Please sign in to comment.