Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Fix circular dependency in mock_context #154

Merged
merged 1 commit into from
Nov 5, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/mock_tracer/mock_context.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import * as opentracing from '../index';
import {SpanContext} from '../span_context';
import MockSpan from './mock_span';

/**
* OpenTracing Context implementation designed for use in
* unit tests.
*/
export class MockContext extends opentracing.SpanContext {
export class MockContext extends SpanContext {

//------------------------------------------------------------------------//
// MockContext-specific
Expand Down