Skip to content

Commit

Permalink
Lower duration to 3s
Browse files Browse the repository at this point in the history
  • Loading branch information
Zacqary committed Jun 13, 2023
1 parent f530906 commit c671dc6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
const response = await alertUtils.getSnoozeRequest(createdRule.id).send({
snooze_schedule: {
...SNOOZE_SCHEDULE,
duration: 10000,
duration: 3000,
},
});

Expand All @@ -371,7 +371,7 @@ export default function createSnoozeRuleTests({ getService }: FtrProviderContext
expect(updatedAlert.snooze_schedule).to.eql([
{
...SNOOZE_SCHEDULE,
duration: 10000,
duration: 3000,
},
]);
});
Expand Down

0 comments on commit c671dc6

Please sign in to comment.