Skip to content

Commit ababa13

Browse files
Merge pull request #1760 from dgileadi/fix-nunit-name
Fix running and debugging NUnit tests
2 parents 0d6db16 + f2c2604 commit ababa13

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/features/codeLensProvider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export default class OmniSharpCodeLensProvider extends AbstractProvider implemen
104104
if (testFeature) {
105105
// this test method has a test feature
106106
let testFrameworkName = 'xunit';
107-
if (testFeature.Name == 'NunitTestMethod') {
107+
if (testFeature.Name == 'NUnitTestMethod') {
108108
testFrameworkName = 'nunit';
109109
}
110110
else if (testFeature.Name == 'MSTestMethod') {

0 commit comments

Comments
 (0)