We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6426223 commit 350add7Copy full SHA for 350add7
dwio/nimble/tablet/tests/TabletTest.cpp
@@ -610,10 +610,10 @@ TEST_F(TabletTest, optionalSections) {
610
ASSERT_EQ(zeroes, section->content());
611
};
612
613
- auto check4 = [&, empty = std::string()]() {
+ auto check4 = [&, emptyStr = std::string()]() {
614
auto section = tablet->loadOptionalSection("section4");
615
ASSERT_TRUE(section.has_value());
616
- ASSERT_EQ(empty, section->content());
+ ASSERT_EQ(emptyStr, section->content());
617
618
619
auto check5 = [&]() {
0 commit comments