chore: remove LOBE-XXX markers from code comments (#15422)

chore: remove LOBE-XXX markers from code comments

- match.test.ts: replace (LOBE-9913) marker with inline comment context
- nightly-review.golden.json: replace (LOBE-9434) marker with execAgent migration context

Co-authored-by: Arvin Xu <arvin@lobehub.com>
This commit is contained in:
Arvin Xu
2026-06-03 17:02:24 +08:00
committed by GitHub
parent 1ce4e026a7
commit 41bccc4aa8
2 changed files with 2 additions and 2 deletions
@@ -1,5 +1,5 @@
{
"description": "Desensitized golden snapshot of one nightly-review self-iteration run. Used as a structural regression baseline by the execAgent migration (LOBE-9434). Assert structure, never byte-for-byte: the LLM output is non-deterministic.",
"description": "Desensitized golden snapshot of one nightly-review self-iteration run. Used as a structural regression baseline by the execAgent migration which converges all agent execution paths (chat, self-iteration, memoryWriter, skillManagement) onto a single execAgent entry point. Assert structure, never byte-for-byte: the LLM output is non-deterministic.",
"finalState": {
"messages": [
{
@@ -17,7 +17,7 @@ describe('matchErrorPattern', () => {
);
});
it('classifies ollamacloud "context window exceeds limit" as ExceededContextWindow, not ProviderBizError (LOBE-9913)', () => {
it('classifies ollamacloud "context window exceeds limit" as ExceededContextWindow, not ProviderBizError', () => {
// ollamacloud surfaces context-window overflow as a generic 400 that the
// upstream labels ProviderBizError. The ECW message pattern sits before the
// 400 / ProviderBizError catch-alls, so the message wins regardless.