From 868881deede1181e59a87801fa1d4efac7bed0bf Mon Sep 17 00:00:00 2001 From: annie <59816815+JL03-Yue@users.noreply.github.com> Date: Wed, 16 Aug 2023 20:46:15 -0700 Subject: [PATCH] update the issue reporter test to include changed redirect url --- .../src/test/unit/IssueReporter.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vscode-dotnet-runtime-library/src/test/unit/IssueReporter.test.ts b/vscode-dotnet-runtime-library/src/test/unit/IssueReporter.test.ts index 2e6aef47..28ef2216 100644 --- a/vscode-dotnet-runtime-library/src/test/unit/IssueReporter.test.ts +++ b/vscode-dotnet-runtime-library/src/test/unit/IssueReporter.test.ts @@ -31,7 +31,7 @@ suite('IssueReporter Unit Tests', () => { assert.include(issueBody, expected); } - const expectedUrlContent = ['bug-report--vs-code-runtime-extension.md', 'vscode-dotnet-runtime', 'issues']; + const expectedUrlContent = ['new', 'vscode-dotnet-runtime', 'issues']; for (const expected of expectedUrlContent) { assert.include(url, expected); }