Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ajindal1 committed Oct 21, 2024
1 parent fd4f11c commit 9f81bb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/c_api_tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ TEST(CAPITests, SetTerminate) {
params->SetSearchOption("max_length", 40);

auto generator = OgaGenerator::Create(*model, *params);
EXPECT_EQ(generator->IsSessionTerminated(), false)
EXPECT_EQ(generator->IsSessionTerminated(), false);
std::vector<std::thread> threads;
threads.push_back(std::thread(Generate_Output, generator.get(), std::move(tokenizer_stream)));
threads.push_back(std::thread(Generator_SetTerminate_Call, generator.get()));
Expand Down

0 comments on commit 9f81bb1

Please sign in to comment.