docs: fix shorten test to use a name within the 14-char limit

This commit is contained in:
2026-08-14 10:37:20 -06:00
parent 0af264ce5b
commit 032ca6b2b7
@@ -237,7 +237,7 @@ test("cfgFromSettings defaults baseUrl and omits empty apiKey", () => {
}); });
test("shorten keeps short names and truncates long ones", () => { test("shorten keeps short names and truncates long ones", () => {
assert.equal(shorten("Qwen3.8-27B-NVFP4"), "Qwen3.8-27B-NVFP4"); assert.equal(shorten("Qwen3.8-27B"), "Qwen3.8-27B");
assert.equal(shorten("DeepSeek-V4-Flash-0731"), "DeepSeek-V…0731"); assert.equal(shorten("DeepSeek-V4-Flash-0731"), "DeepSeek-V…0731");
}); });