Skip to content

Commit

Permalink
Fix index unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
karthiknadig committed Jun 5, 2020
1 parent f73bfa9 commit 2fb61fc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/test/telemetry/index.unit.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ suite('Telemetry', () => {
const error = new Error('Boo');
rewiremock('vscode-extension-telemetry').with({ default: Reporter });

const eventName = 'Testing';
const eventName = 'ERROR';
const properties = { hello: 'world', foo: 'bar' };
const measures = { start: 123, end: 987 };

Expand Down Expand Up @@ -196,7 +196,7 @@ suite('Telemetry', () => {
].join('\n\t');
rewiremock('vscode-extension-telemetry').with({ default: Reporter });

const eventName = 'Testing';
const eventName = 'ERROR';
const properties = { hello: 'world', foo: 'bar' };
const measures = { start: 123, end: 987 };

Expand Down Expand Up @@ -249,7 +249,7 @@ suite('Telemetry', () => {
].join('\n\t');
rewiremock('vscode-extension-telemetry').with({ default: Reporter });

const eventName = 'Testing';
const eventName = 'ERROR';
const properties = { hello: 'world', foo: 'bar' };
const measures = { start: 123, end: 987 };

Expand Down Expand Up @@ -291,7 +291,7 @@ suite('Telemetry', () => {
].join('\n\t');
rewiremock('vscode-extension-telemetry').with({ default: Reporter });

const eventName = 'Testing';
const eventName = 'ERROR';
const properties = { hello: 'world', foo: 'bar' };
const measures = { start: 123, end: 987 };

Expand Down

0 comments on commit 2fb61fc

Please sign in to comment.