Skip to content

Commit

Permalink
Refs #22284. Uncrustify.
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <[email protected]>
  • Loading branch information
MiguelCompany committed Nov 26, 2024
1 parent 7429812 commit 8f5df56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/cdr/SimpleTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7119,9 +7119,9 @@ TEST(CDRTests, EmptyStringSerializationSize)
FastBuffer cdrbuffer(buffer, 256);
Cdr cdr_ser(cdrbuffer);
EXPECT_NO_THROW(
{
cdr_ser << str;
});
{
cdr_ser << str;
});
EXPECT_EQ(cdr.get_serialized_data_length(), 5u);
}

Expand All @@ -7132,8 +7132,8 @@ TEST(FastCDRTests, EmptyStringSerializationSize)
FastBuffer cdrbuffer(buffer, 256);
FastCdr cdr_ser(cdrbuffer);
EXPECT_NO_THROW(
{
cdr_ser << str;
});
{
cdr_ser << str;
});
EXPECT_EQ(cdr_ser.get_serialized_data_length(), 5u);
}

0 comments on commit 8f5df56

Please sign in to comment.