You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by re...@apache.org on 2019/01/06 16:14:34 UTC

[cxf] branch 3.2.x-fixes updated: CXF-7855: Update the Brave/OpenTracing/HTrace documentation to include more code snippets (fixing compilation issue)

This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.2.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.2.x-fixes by this push:
     new 36751a1  CXF-7855: Update the Brave/OpenTracing/HTrace documentation to include more code snippets (fixing compilation issue)
36751a1 is described below

commit 36751a1669f84dcebfb88849285bd99f58959bca
Author: reta <dr...@gmail.com>
AuthorDate: Sun Jan 6 11:14:19 2019 -0500

    CXF-7855: Update the Brave/OpenTracing/HTrace documentation to include more code snippets (fixing compilation issue)
---
 .../org/apache/cxf/tracing/opentracing/OpenTracingContextTest.java    | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/integration/tracing/tracing-opentracing/src/test/java/org/apache/cxf/tracing/opentracing/OpenTracingContextTest.java b/integration/tracing/tracing-opentracing/src/test/java/org/apache/cxf/tracing/opentracing/OpenTracingContextTest.java
index 25183c3..3d8a8e8 100644
--- a/integration/tracing/tracing-opentracing/src/test/java/org/apache/cxf/tracing/opentracing/OpenTracingContextTest.java
+++ b/integration/tracing/tracing-opentracing/src/test/java/org/apache/cxf/tracing/opentracing/OpenTracingContextTest.java
@@ -18,7 +18,6 @@
  */
 package org.apache.cxf.tracing.opentracing;
 
-import io.opentracing.ScopeManager;
 import io.opentracing.Tracer;
 import io.opentracing.mock.MockTracer;
 
@@ -45,7 +44,6 @@ public class OpenTracingContextTest {
     
     @Test(expected = IllegalArgumentException.class)
     public void testUnwrapUnsupportedClass() {
-        context.unwrap(ScopeManager.class);
+        context.unwrap(Tracer.SpanBuilder.class);
     }
-
 }