fix: typo

This commit is contained in:
Hadrien Charlanes 2021-04-27 09:46:39 +02:00
parent b294a96ef4
commit 10a083d8f0
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ fs.readdirSync(scenarioFolder).forEach((file) => {
for (const story of scenario.stories) {
it(story.description, async function () {
// Retry the test scenarios up to 4 times if an error happens, due erratic HEVM network errors
// Retry the test scenarios up to 4 times if an error happens, due to erratic HEVM network errors
this.retries(4);
await executeStory(story, testEnv);
});

View File

@ -35,7 +35,7 @@ fs.readdirSync(scenarioFolder).forEach((file) => {
for (const story of scenario.stories) {
it(story.description, async function () {
// Retry the test scenarios up to 4 times if an error happens, due erratic HEVM network errors
// Retry the test scenarios up to 4 times if an error happens, due to erratic HEVM network errors
this.retries(4);
await executeStory(story, testEnv);
});