Skip to content

Commit 2fb61fc

Browse files
committed
Fix index unit tests
1 parent f73bfa9 commit 2fb61fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/test/telemetry/index.unit.test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ suite('Telemetry', () => {
154154
const error = new Error('Boo');
155155
rewiremock('vscode-extension-telemetry').with({ default: Reporter });
156156

157-
const eventName = 'Testing';
157+
const eventName = 'ERROR';
158158
const properties = { hello: 'world', foo: 'bar' };
159159
const measures = { start: 123, end: 987 };
160160

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

199-
const eventName = 'Testing';
199+
const eventName = 'ERROR';
200200
const properties = { hello: 'world', foo: 'bar' };
201201
const measures = { start: 123, end: 987 };
202202

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

252-
const eventName = 'Testing';
252+
const eventName = 'ERROR';
253253
const properties = { hello: 'world', foo: 'bar' };
254254
const measures = { start: 123, end: 987 };
255255

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

294-
const eventName = 'Testing';
294+
const eventName = 'ERROR';
295295
const properties = { hello: 'world', foo: 'bar' };
296296
const measures = { start: 123, end: 987 };
297297

0 commit comments

Comments
 (0)