Skip to content

Commit

Permalink
process comment
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielsantosphilips committed Oct 22, 2024
1 parent 4798181 commit 7d08ddf
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions services/ble/test/TestGapCentral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,7 @@ namespace services
{
infra::StringOutputStream::WithStorage<128> stream;

services::GapState stateStandby = services::GapState::standby;
services::GapState stateScanning = services::GapState::scanning;
services::GapState stateAdvertising = services::GapState::advertising;
services::GapState stateConnected = services::GapState::connected;
services::GapState stateInitiating = services::GapState::initiating;

stream << stateStandby << " " << stateScanning << " " << stateAdvertising << " " << stateConnected << " " << stateInitiating;
stream << services::GapState::standby << " " << services::GapState::scanning << " " << services::GapState::advertising << " " << services::GapState::connected << " " << services::GapState::initiating;

EXPECT_EQ("Standby Scanning Advertising Connected Initiating", stream.Storage());
}
Expand Down

0 comments on commit 7d08ddf

Please sign in to comment.