Fix failing test

This commit is contained in:
Jongho Moon
2015-09-18 16:24:52 +09:00
parent 8822ee1385
commit db102012dc
@@ -33,6 +33,7 @@ import com.navercorp.pinpoint.bootstrap.context.TraceType;
public class MockTraceContext implements TraceContext {
private Trace trace;
private final ProfilerConfig config = new ProfilerConfig();
public void setTrace(Trace trace) {
this.trace = trace;
@@ -126,7 +127,7 @@ public class MockTraceContext implements TraceContext {
@Override
public ProfilerConfig getProfilerConfig() {
return null;
return config;
}
@Override