Skip to content

Commit 2eef913

Browse files
committed
chore: fix lint issues
1 parent 9785201 commit 2eef913

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

packages/instrumentation-cassandra-driver/test/cassandra-driver.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,9 @@ context.setGlobalContextManager(new AsyncLocalStorageContextManager());
5858
const testCassandra = process.env.RUN_CASSANDRA_TESTS;
5959
const shouldTest = testCassandra;
6060
const cassandraTimeoutMs = 60000;
61-
const cassandraContactPoint =
62-
process.env.CASSANDRA_HOST
63-
? '127.0.0.1'
64-
: 'cassandra';
61+
const cassandraContactPoint = process.env.CASSANDRA_HOST
62+
? '127.0.0.1'
63+
: 'cassandra';
6564

6665
function assertSpan(
6766
span: ReadableSpan,

packages/instrumentation-redis/test/v4/redis.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,7 @@ import { RedisInstrumentation } from '../../src';
2323
import type { MultiErrorReply } from '../../src/v4/internal-types';
2424
import * as assert from 'assert';
2525

26-
import {
27-
redisTestConfig,
28-
redisTestUrl,
29-
shouldTest,
30-
} from './utils';
26+
import { redisTestConfig, redisTestUrl, shouldTest } from './utils';
3127
import * as testUtils from '@opentelemetry/contrib-test-utils';
3228

3329
const instrumentation = registerInstrumentationTesting(

0 commit comments

Comments
 (0)