Skip to content

Commit

Permalink
Merge pull request #1760 from dgileadi/fix-nunit-name
Browse files Browse the repository at this point in the history
Fix running and debugging NUnit tests
  • Loading branch information
DustinCampbell authored Sep 15, 2017
2 parents 0d6db16 + f2c2604 commit ababa13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/codeLensProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default class OmniSharpCodeLensProvider extends AbstractProvider implemen
if (testFeature) {
// this test method has a test feature
let testFrameworkName = 'xunit';
if (testFeature.Name == 'NunitTestMethod') {
if (testFeature.Name == 'NUnitTestMethod') {
testFrameworkName = 'nunit';
}
else if (testFeature.Name == 'MSTestMethod') {
Expand Down

0 comments on commit ababa13

Please sign in to comment.