1
0
mirror of synced 2025-07-29 11:01:13 +03:00
This commit is contained in:
yhirose
2025-03-16 20:29:54 -04:00
parent c765584e6b
commit 33acccb346
2 changed files with 6 additions and 2 deletions

View File

@ -5571,6 +5571,9 @@ TEST(StreamingTest, NoContentLengthStreaming) {
s += std::string(data, len);
return true;
});
ASSERT_TRUE(res);
EXPECT_EQ(StatusCode::OK_200, res->status);
EXPECT_EQ("aaabbb", s);
});
auto get_se = detail::scope_exit([&] { get_thread.join(); });