From afec547083289965fa52edf52c2e6df678c0ea22 Mon Sep 17 00:00:00 2001 From: Hackall <36754621+hackall360@users.noreply.github.com> Date: Sat, 13 Sep 2025 04:48:14 -0700 Subject: [PATCH] Remove redundant referrer from smoke tests --- tests/pollilib-smoke.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pollilib-smoke.mjs b/tests/pollilib-smoke.mjs index d721ac3..7dcc5a1 100644 --- a/tests/pollilib-smoke.mjs +++ b/tests/pollilib-smoke.mjs @@ -54,7 +54,7 @@ await step('textModels returns JSON', async () => { }); await step('text(prompt) returns string', async () => { - const out = await textGet('Say ok', { model: 'openai-mini', referrer: REFERRER }, client); + const out = await textGet('Say ok', { model: 'openai-mini' }, client); if (typeof out !== 'string' || !out.length) throw new Error('empty text output'); return `len=${out.length}`; });