Skip to content

Commit

Permalink
Proper fix with latest master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
TomRoSystems committed Jan 25, 2021
1 parent bb74736 commit 643602b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions api/include/opentelemetry/trace/propagation/b3_propagator.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
#include "opentelemetry/trace/span.h"
#include "opentelemetry/trace/span_context.h"

#warning "Hello warning test"

OPENTELEMETRY_BEGIN_NAMESPACE
namespace trace
{
Expand Down
2 changes: 1 addition & 1 deletion api/test/trace/propagation/b3_propagation_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ TEST(B3PropagationTest, DoNotExtractWithInvalidHex)
context::Context ctx2 = format.Extract(Getter, carrier, ctx1);
auto ctx2_span = ctx2.GetValue(trace::kSpanKey);
auto span = nostd::get<nostd::shared_ptr<trace::Span>>(ctx2_span);
EXPECT_EQ(span->GetContext().HasRemoteParent(), false);
EXPECT_EQ(span->GetContext().IsRemote(), false);
}

TEST(B3PropagationTest, SetRemoteSpan)
Expand Down

0 comments on commit 643602b

Please sign in to comment.