Skip to content

Commit 4ea0ad4

Browse files
committed
fix test
1 parent 2ad6cde commit 4ea0ad4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/test/testing/common/testingAdapter.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,8 @@ suite('End to End Tests: test adapters', () => {
11581158
} // Create payload with multiple test results (simulates real test execution)
11591159
const testResults: Record<string, any> = {};
11601160
for (let i = 0; i < numParameterizedResults; i++) {
1161-
testResults[`test_0_${i % 20}`] = {
1161+
// Use test IDs that actually exist in our mock setup (test_0_0 through test_0_9)
1162+
testResults[`test_0_${i % testFunctionsPerFile}`] = {
11621163
test: `test_method[${i}]`,
11631164
outcome: 'success',
11641165
message: null,

0 commit comments

Comments
 (0)