Skip to content

Commit

Permalink
Fixed opentracing#126 - MockTracer._allocSpan is private and can't be…
Browse files Browse the repository at this point in the history
… overwritten
  • Loading branch information
Oran Epelbaum committed May 29, 2019
1 parent 21a8609 commit 92b0763
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mock_tracer/mock_tracer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class MockTracer extends opentracing.Tracer {
this._spans = [];
}

private _allocSpan(): MockSpan {
protected _allocSpan(): MockSpan {
return new MockSpan(this);
}

Expand Down

0 comments on commit 92b0763

Please sign in to comment.