Skip to content

Commit

Permalink
test: fix DB name in v5 tests
Browse files Browse the repository at this point in the history
  • Loading branch information
GuillaumeDeconinck committed Jun 6, 2023
1 parent e91dfe0 commit 9eacbf0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ describe('MongoDBInstrumentation-Tracing-v5', () => {

const HOST = process.env.MONGODB_HOST || DEFAULT_MONGO_HOST;
const PORT = process.env.MONGODB_PORT || '27017';
const DB_NAME = process.env.MONGODB_DB || 'opentelemetry-tests';
const DB_NAME = process.env.MONGODB_DB || 'opentelemetry-tests-traces';
const COLLECTION_NAME = 'test-traces';
const URL = `mongodb://${HOST}:${PORT}/${DB_NAME}`;

Expand Down

0 comments on commit 9eacbf0

Please sign in to comment.