@@ -47,8 +47,8 @@ suite(`DotnetTest: ${testAssetWorkspace.description}`, function () {
47
47
} ) ;
48
48
49
49
test ( 'Undefined runsettings path is unchanged' , async function ( ) {
50
- const omnisharpConfig = vscode . workspace . getConfiguration ( 'omnisharp ' ) ;
51
- await omnisharpConfig . update ( 'testRunSettings ' , undefined ) ;
50
+ const omnisharpConfig = vscode . workspace . getConfiguration ( 'dotnet ' ) ;
51
+ await omnisharpConfig . update ( 'unitTests.runSettingsPath ' , undefined ) ;
52
52
53
53
const eventWaiter = testAssetWorkspace . waitForEvent < OmnisharpRequestMessage > (
54
54
eventStream ,
@@ -69,8 +69,8 @@ suite(`DotnetTest: ${testAssetWorkspace.description}`, function () {
69
69
const relativeRunSettingsPath = `.\\settings\\TestSettings.runsettings` . replace ( '\\' , path . sep ) ;
70
70
const absoluteRunSettingsPath = path . join ( process . cwd ( ) , relativeRunSettingsPath ) ;
71
71
72
- const omnisharpConfig = vscode . workspace . getConfiguration ( 'omnisharp ' ) ;
73
- await omnisharpConfig . update ( 'testRunSettings ' , absoluteRunSettingsPath ) ;
72
+ const omnisharpConfig = vscode . workspace . getConfiguration ( 'dotnet ' ) ;
73
+ await omnisharpConfig . update ( 'unitTests.runSettingsPath ' , absoluteRunSettingsPath ) ;
74
74
75
75
const eventWaiter = testAssetWorkspace . waitForEvent < OmnisharpRequestMessage > (
76
76
eventStream ,
@@ -91,8 +91,8 @@ suite(`DotnetTest: ${testAssetWorkspace.description}`, function () {
91
91
const endingPath = 'settings\\TestSettings.runsettings' . replace ( '\\' , path . sep ) ;
92
92
const relativeRunSettingPath = `.\\${ endingPath } ` . replace ( '\\' , path . sep ) ;
93
93
94
- const omnisharpConfig = vscode . workspace . getConfiguration ( 'omnisharp ' ) ;
95
- await omnisharpConfig . update ( 'testRunSettings ' , relativeRunSettingPath ) ;
94
+ const omnisharpConfig = vscode . workspace . getConfiguration ( 'dotnet ' ) ;
95
+ await omnisharpConfig . update ( 'unitTests.runSettingsPath ' , relativeRunSettingPath ) ;
96
96
97
97
const eventWaiter = testAssetWorkspace . waitForEvent < OmnisharpRequestMessage > (
98
98
eventStream ,
0 commit comments