mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
fix(bench): escape the NUL separator so measure.mjs stays a text file
The fingerprint key separator was written as a literal NUL byte instead of the `\u0000` escape. Git classifies any file containing a NUL as binary, so the whole bench showed as `Bin` with no diff on GitHub and could not be reviewed — the same defect this branch already fixed once before the tri-review. Escaping it is byte-for-byte equivalent at runtime (both produce U+0000), so the committed fingerprint is unchanged and `--check` still passes. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
0015b0d645
commit
b620773b1a
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ function outcomesOf(parsedFiles, sites) {
|
|||
callsite,
|
||||
);
|
||||
outcomes.add(
|
||||
`${siteKey(receiver, member, callsite)} | ||||