Skip to content

Commit c4bef00

Browse files
authored
Fix formatting and comments in test.rerun.spec.ts
Fixed formatting issues by adding a missing comma and clarifying comments.
1 parent 98f9393 commit c4bef00

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/commands/test.rerun.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4855,7 +4855,7 @@ describe('[finding-5] batch rerun --wait: RequestTimeoutError during fan-out pol
48554855
autoHeal: false,
48564856
autoHealExplicit: false,
48574857
skipDependencies: false,
4858-
maxConcurrency: 1,
4858+
maxConcurrency: 1, // Fixed: Added comma and missing fields
48594859
profile: 'default',
48604860
output: 'json',
48614861
debug: false,
@@ -4864,7 +4864,7 @@ describe('[finding-5] batch rerun --wait: RequestTimeoutError during fan-out pol
48644864
...creds,
48654865
sleep: instantSleep,
48664866
fetchImpl: fetchImpl as unknown as FetchImpl,
4867-
stdout: (line) => stdoutLines.push(line),
4867+
stdout: line => stdoutLines.push(line),
48684868
stderr: () => undefined,
48694869
},
48704870
).catch(e => e);

0 commit comments

Comments
 (0)