Skip to content

Commit 1cbea09

Browse files
authored
[BUILD] Build break using protoc 3.14 (open-telemetry#3211)
1 parent b741815 commit 1cbea09

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

exporters/otlp/test/otlp_recordable_test.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,8 @@ TEST(OtlpRecordable, SetInstrumentationScopeWithAttributes)
136136

137137
ASSERT_EQ(proto_instr_libr.attributes_size(), 1);
138138
const auto &proto_attributes = proto_instr_libr.attributes(0);
139-
ASSERT_TRUE(proto_attributes.value().has_string_value());
139+
// Requires protoc 3.15.0
140+
// ASSERT_TRUE(proto_attributes.value().has_string_value());
140141
EXPECT_EQ("test_key", proto_attributes.key());
141142
EXPECT_EQ("test_value", proto_attributes.value().string_value());
142143
}

0 commit comments

Comments
 (0)