We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da55217 commit 009e175Copy full SHA for 009e175
1 file changed
test/SocketTest.cpp
@@ -126,7 +126,6 @@ TEST_GROUP(SocketTest)
126
static inline constexpr std::uint16_t port{1234};
127
static inline constexpr Protocol protocol = Protocol::tcp;
128
static inline constexpr std::uint8_t flag{0};
129
- static inline constexpr auto statusSendOk = static_cast<std::uint8_t>(SocketInterrupt::Mask::send);
130
static inline constexpr std::uint16_t defaultSize{10};
131
};
132
@@ -487,7 +486,6 @@ TEST(SocketTest, receiveReturnsErrorIfStatusNotEstablished)
487
486
TEST(SocketTest, receiveReceivesData)
488
{
489
auto buffer = createBuffer(defaultSize);
490
- std::span<std::uint8_t> bufferSpan{buffer};
491
expectWaitForFreeRxTx(Mode::receive, socketHandle, 100);
492
mock("Device")
493
.expectOneCall("receiveData")
0 commit comments