Skip to content

Commit

Permalink
fixup! feat(exporters)!: rewrite exporter config logic
Browse files Browse the repository at this point in the history
  • Loading branch information
pichlermarc committed Sep 16, 2024
1 parent b93d9db commit 11b5f20
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import * as sinon from 'sinon';
import * as assert from 'assert';
import { validateAndNormalizeUrl } from '../src/configuration/otlp-grpc-configuration';

describe('validateAndNormalizeUrl()', () => {
describe('validateAndNormalizeUrl()', function () {
const tests = [
{
name: 'bare hostname should return same value',
Expand Down Expand Up @@ -66,7 +66,7 @@ describe('validateAndNormalizeUrl()', () => {
},
];
tests.forEach(test => {
it(test.name, () => {
it(test.name, function () {
const diagWarn = sinon.stub(diag, 'warn');
try {
assert.strictEqual(validateAndNormalizeUrl(test.input), test.expected);
Expand Down

0 comments on commit 11b5f20

Please sign in to comment.