Skip to content

Commit 256aaf2

Browse files
authored
Don't use @microsoft.com in source code (microsoft#163933)
1 parent 281161a commit 256aaf2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extensions/git/src/test/smoke.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ suite('git smoke test', function () {
4444
fs.writeFileSync(file('index.pug'), 'hello', 'utf8');
4545
cp.execSync('git init -b main', { cwd });
4646
cp.execSync('git config user.name testuser', { cwd });
47-
cp.execSync('git config user.email monacotools@microsoft.com', { cwd });
47+
cp.execSync('git config user.email monacotools@example.com', { cwd });
4848
cp.execSync('git config commit.gpgsign false', { cwd });
4949
cp.execSync('git add .', { cwd });
5050
cp.execSync('git commit -m "initial commit"', { cwd });

src/vs/workbench/api/test/browser/extHostTelemetry.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ suite('ExtHostTelemetry', function () {
171171
// Log an event with a bunch of PII, this should all get cleaned out
172172
logger.logUsage('test-event', {
173173
'fake-password': 'pwd=123',
174-
'fake-email': 'no-reply@microsoft.com',
174+
'fake-email': 'no-reply@example.com',
175175
'fake-token': 'token=123',
176176
'fake-slack-token': 'xoxp-123',
177177
'fake-path': '/Users/username/.vscode/extensions',

0 commit comments

Comments
 (0)