Skip to content

Commit cb1284a

Browse files
committed
Fix lint formatting in test_text_llm_runner.cpp
This PR was authored with the assistance of Claude.
1 parent 7e944e9 commit cb1284a

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

extension/llm/runner/test/test_text_llm_runner.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -454,10 +454,9 @@ TEST_F(RunnerTest, PrefillThenGenerateEmpty) {
454454
config.echo = false;
455455

456456
CallbackCounter counter;
457-
Error err = runner.generate(
458-
"", config, [&counter](const std::string& token) {
459-
counter.callback(token);
460-
});
457+
Error err = runner.generate("", config, [&counter](const std::string& token) {
458+
counter.callback(token);
459+
});
461460

462461
EXPECT_EQ(err, Error::Ok);
463462
// First token from prefill + remaining from decode loop

0 commit comments

Comments
 (0)