From 83d385b4294a27fd5b676b56531f446480bfea2a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sigbj=C3=B8rn=20Skj=C3=A6ret?= <1629204+CISC@users.noreply.github.com> Date: Sat, 27 Jun 2026 09:30:19 +0200 Subject: [PATCH] tests : fix test-chat-template --no-common option (#25075) --- tests/test-chat-template.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-chat-template.cpp b/tests/test-chat-template.cpp index c388dee1c4..d971b23746 100644 --- a/tests/test-chat-template.cpp +++ b/tests/test-chat-template.cpp @@ -135,7 +135,7 @@ int main(int argc, char ** argv) { output_path = args[i + 1]; i++; } else if (args[i] == "--no-common") { - use_common = true; + use_common = false; } else if (tmpl_path.empty()) { tmpl_path = args[i]; } else {