Skip to content

Commit

Permalink
fix: update tests after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
mwear committed Jun 9, 2020
1 parent e4a078f commit 70a1d1e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/opentelemetry-exporter-zipkin/test/zipkin.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -374,6 +374,7 @@ describe('ZipkinExporter', () => {
},
],
resource: Resource.empty(),
instrumentationLibrary: { name: 'default', version: '0.0.1' },
};
const span2: ReadableSpan = {
name: 'my-span',
Expand All @@ -394,6 +395,7 @@ describe('ZipkinExporter', () => {
links: [],
events: [],
resource: Resource.empty(),
instrumentationLibrary: { name: 'default', version: '0.0.1' },
};

const exporter = new ZipkinExporter({});
Expand Down Expand Up @@ -446,6 +448,7 @@ describe('ZipkinExporter', () => {
resource: new Resource({
[SERVICE_RESOURCE.NAME]: resource_service_name,
}),
instrumentationLibrary: { name: 'default', version: '0.0.1' },
};
const span2: ReadableSpan = {
name: 'my-span',
Expand All @@ -466,6 +469,7 @@ describe('ZipkinExporter', () => {
links: [],
events: [],
resource: Resource.empty(),
instrumentationLibrary: { name: 'default', version: '0.0.1' },
};

const exporter = new ZipkinExporter({});
Expand Down

0 comments on commit 70a1d1e

Please sign in to comment.