From 2b163051973f40122b5d9280e33c2342866e0d6a Mon Sep 17 00:00:00 2001 From: Naseem Date: Sun, 15 Dec 2019 19:00:14 -0500 Subject: [PATCH] fix: gts --- packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts b/packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts index 404e0d6f993..4f33e922a27 100644 --- a/packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts +++ b/packages/opentelemetry-plugin-ioredis/test/ioredis.test.ts @@ -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); @@ -356,8 +356,8 @@ describe('ioredis', () => { assertionUtils.assertPropagation(endedSpans[0], span); done(); }); + }); }); - }); it('should create a child span for get promise', async () => { const attributes = {