Skip to content

Commit 4825d2a

Browse files
veksenclaude
andcommitted
fix: fix TS error in runner test expect call
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cc0f9e2 commit 4825d2a

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/runner.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,7 @@ describe("UPLOADABLE_STATES matches buildQueries filter", () => {
5858
const results = [fakeQuery(state)];
5959
const uploaded = buildQueries(results).length;
6060
const counted = countUploadableQueries(results);
61-
expect(counted).toBe(
62-
uploaded,
63-
`state "${state}": countUploadableQueries=${counted} but buildQueries=${uploaded}`,
64-
);
61+
expect(counted, `state "${state}"`).toBe(uploaded);
6562
}
6663
});
6764
});

0 commit comments

Comments
 (0)