Skip to content

Commit 841b9a4

Browse files
committed
nit fixes.
1 parent 875858a commit 841b9a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/dotnetTest.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,14 @@ export function updateCodeLensForTest(bucket: vscode.CodeLens[], fileName: strin
187187
let testFeature = node.Features.find(value => (value.Name == 'XunitTestMethod' || value.Name == 'NUnitTestMethod' || value.Name == 'MSTestMethod'));
188188
if (testFeature) {
189189
// this test method has a test feature
190-
let testFrameworkName = 'xunit'
190+
let testFrameworkName = 'xunit';
191191
if(testFeature.Name == 'NunitTestMethod')
192192
{
193193
testFrameworkName = 'nunit';
194194
}
195195
else if(testFeature.Name == 'MSTestMethod')
196196
{
197-
testFrameworkName = 'mstest'
197+
testFrameworkName = 'mstest';
198198
}
199199

200200
bucket.push(new vscode.CodeLens(

0 commit comments

Comments
 (0)