Skip to content

Commit

Permalink
fix: gts
Browse files Browse the repository at this point in the history
  • Loading branch information
naseemkullah committed Dec 16, 2019
1 parent 2d76a4f commit 2b16305
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ describe('ioredis', () => {
const span = tracer.startSpan('test span');
tracer.withSpan(span, () => {
const pipeline = client.pipeline();
pipeline.set("foo", "bar");
pipeline.del("cc");
pipeline.set('foo', 'bar');
pipeline.del('cc');
pipeline.exec((err, results) => {
assert.ifError(err);

Expand All @@ -356,8 +356,8 @@ describe('ioredis', () => {
assertionUtils.assertPropagation(endedSpans[0], span);
done();
});
});
});
});

it('should create a child span for get promise', async () => {
const attributes = {
Expand Down

0 comments on commit 2b16305

Please sign in to comment.