Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Klein committed Jun 9, 2017
1 parent 5d7d560 commit 27b0875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/common/http/conn_manager_impl_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ TEST_F(HttpConnectionManagerImplTest, StartAndFinishSpanNormalFlow) {
}));
EXPECT_CALL(*span, finishSpan(_))
.WillOnce(
Invoke([&](Tracing::SpanFinalizer& finalizer) -> void { finalizer.finalize(*span); }));
Invoke([span](Tracing::SpanFinalizer& finalizer) -> void { finalizer.finalize(*span); }));
EXPECT_CALL(*span, setTag(_, _)).Times(testing::AnyNumber());
// Verify tag is set based on the request headers.
EXPECT_CALL(*span, setTag(":method", "GET"));
Expand Down

0 comments on commit 27b0875

Please sign in to comment.