Skip to content

Commit

Permalink
nit fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhitejJohn committed May 13, 2017
1 parent 875858a commit 841b9a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/features/dotnetTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,14 +187,14 @@ export function updateCodeLensForTest(bucket: vscode.CodeLens[], fileName: strin
let testFeature = node.Features.find(value => (value.Name == 'XunitTestMethod' || value.Name == 'NUnitTestMethod' || value.Name == 'MSTestMethod'));
if (testFeature) {
// this test method has a test feature
let testFrameworkName = 'xunit'
let testFrameworkName = 'xunit';
if(testFeature.Name == 'NunitTestMethod')
{
testFrameworkName = 'nunit';
}
else if(testFeature.Name == 'MSTestMethod')
{
testFrameworkName = 'mstest'
testFrameworkName = 'mstest';
}

bucket.push(new vscode.CodeLens(
Expand Down

0 comments on commit 841b9a4

Please sign in to comment.