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 c2e9105 commit 1ea745aCopy full SHA for 1ea745a
test/telemetry/test_telemetry.cpp
@@ -191,10 +191,10 @@ TELEMETRY_IMPLEMENTATION_TEST("Tracer telemetry lifecycle") {
191
product.name = Product::Name::tracing;
192
product.enabled = true;
193
product.version = tracer_version;
194
- product.configurations = std::unordered_map<ConfigName, ConfigMetadata>{
+ product.configurations = std::unordered_map<ConfigName, std::vector<ConfigMetadata>>{
195
{ConfigName::SERVICE_NAME,
196
- ConfigMetadata(ConfigName::SERVICE_NAME, "foo",
197
- ConfigMetadata::Origin::CODE)},
+ {ConfigMetadata(ConfigName::SERVICE_NAME, "foo",
+ ConfigMetadata::Origin::CODE)}},
198
};
199
200
Configuration cfg;
0 commit comments