Skip to content

Commit e869237

Browse files
committed
style: fix curly brace lint error in transcript-append-redact.test.ts
1 parent 4aff949 commit e869237

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/config/sessions/transcript-append-redact.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,9 @@ describe("appendExactAssistantMessageToSessionTranscript — redaction", () => {
119119
});
120120

121121
expect(result.ok).toBe(true);
122-
if (!result.ok) return;
122+
if (!result.ok) {
123+
return;
124+
}
123125

124126
const raw = fs.readFileSync(result.sessionFile, "utf-8");
125127
expect(raw).toContain(fakeApiKey);

0 commit comments

Comments
 (0)