Skip to content
This repository was archived by the owner on Mar 3, 2026. It is now read-only.

Commit 728ebe8

Browse files
authored
chore: fix typo in function name (#1762)
1 parent 0e418df commit 728ebe8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

conformance-test/retryStrategy.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ describe('retry conformance testing', () => {
9494
) {
9595
const testCase: RetryTestCase = retryTestCases[testCaseIndex];
9696
describe(`Scenario ${testCase.id}`, () => {
97-
excecuteScenario(testCase);
97+
executeScenario(testCase);
9898
});
9999
}
100100
});
101101

102-
function excecuteScenario(testCase: RetryTestCase) {
102+
function executeScenario(testCase: RetryTestCase) {
103103
for (
104104
let instructionNumber = 0;
105105
instructionNumber < testCase.cases.length;

0 commit comments

Comments
 (0)