Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .bazelignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ cmake-build-debug/
cmake-build-coverage/
cmake-build-release/
.build/
_build/
Original file line number Diff line number Diff line change
Expand Up @@ -1460,7 +1460,7 @@ TEST(ObjectDescriptorImpl, MakeSubsequentStreamReusesIdleStreamAlreadyLast) {
/// @test Verify an idle stream at the front is moved to the back and reused.
TEST(ObjectDescriptorImpl, MakeSubsequentStreamReusesAndMovesIdleStream) {
AsyncSequencer<bool> sequencer;

std::cout<<"test line\n";

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

This std::cout statement appears to be a debug print and should be removed from the test file before merging. Debug statements can clutter output and should not be part of the final committed code.

// First stream setup
auto stream1 = std::make_unique<MockStream>();
EXPECT_CALL(*stream1, Write(_, _)).WillRepeatedly([](auto const&, auto) {
Expand Down