diff --git a/src/VisualStudio/IntegrationTest/New.IntegrationTests/CSharp/CSharpUpgradeProject.cs b/src/VisualStudio/IntegrationTest/New.IntegrationTests/CSharp/CSharpUpgradeProject.cs index 4c71df91fd56f..7a9547dacd52d 100644 --- a/src/VisualStudio/IntegrationTest/New.IntegrationTests/CSharp/CSharpUpgradeProject.cs +++ b/src/VisualStudio/IntegrationTest/New.IntegrationTests/CSharp/CSharpUpgradeProject.cs @@ -35,7 +35,7 @@ await TestServices.Editor.SetTextAsync(@$" } } - [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/38301")] + [IdeFact] public async Task CPSProject_GeneralPropertyGroupUpdated() { var project = ProjectName; @@ -44,8 +44,8 @@ public async Task CPSProject_GeneralPropertyGroupUpdated() await TestServices.SolutionExplorer.AddProjectAsync(project, WellKnownProjectTemplates.CSharpNetStandardClassLibrary, LanguageNames.CSharp, HangMitigatingCancellationToken); await TestServices.SolutionExplorer.RestoreNuGetPackagesAsync(project, HangMitigatingCancellationToken); - await InvokeFixAsync(version: "latest", HangMitigatingCancellationToken); - VerifyPropertyOutsideConfiguration(await GetProjectFileElementAsync(project, HangMitigatingCancellationToken), "LangVersion", "latest"); + await InvokeFixAsync(version: "preview", HangMitigatingCancellationToken); + VerifyPropertyOutsideConfiguration(await GetProjectFileElementAsync(project, HangMitigatingCancellationToken), "LangVersion", "preview"); } [IdeFact(Skip = "https://github.com/dotnet/roslyn/issues/63026")]