Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
msambol committed Mar 8, 2024
1 parent bfa2b3d commit 649dae2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ describe('tests', () => {

expect(() => {
app.synth();
}).toThrow('Health check interval must be greater than the timeout; received interval 10, timeout 20.');
}).toThrow('Health check interval must be greater than or equal to the timeout; received interval 10, timeout 20.');
});

test('imported targetGroup has targetGroupName', () => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ describe('tests', () => {
// THEN
const validationErrors: string[] = targetGroup.node.validate();
expect(validationErrors).toEqual([
'Health check interval must be greater than the timeout; received interval 30, timeout 40.',
'Health check interval must be greater than or equal to the timeout; received interval 30, timeout 40.',
]);
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ describe('tests', () => {

expect(() => {
app.synth();
}).toThrow('Health check interval must be greater than the timeout; received interval 10, timeout 20.');
}).toThrow('Health check interval must be greater than or equal to the timeout; received interval 10, timeout 20.');
});

test('targetGroupName unallowed: more than 32 characters', () => {
Expand Down

0 comments on commit 649dae2

Please sign in to comment.