Skip to content

Commit

Permalink
Revert "Fix index unit tests"
Browse files Browse the repository at this point in the history
This reverts commit 2fb61fc.
  • Loading branch information
karthiknadig committed Jun 5, 2020
1 parent 2fb61fc commit 26d47fc
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 = 'ERROR';
const eventName = 'Testing';
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 = 'ERROR';
const eventName = 'Testing';
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 = 'ERROR';
const eventName = 'Testing';
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 = 'ERROR';
const eventName = 'Testing';
const properties = { hello: 'world', foo: 'bar' };
const measures = { start: 123, end: 987 };

Expand Down

0 comments on commit 26d47fc

Please sign in to comment.