Skip to content

Commit 732ec3f

Browse files
committed
Applied code review suggestions.
1 parent a5d0059 commit 732ec3f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Features/CSharpTest/ConvertToRecord/ConvertToRecordCodeRefactoringTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4538,7 +4538,7 @@ public abstract record C(string? S)
45384538
}
45394539
}
45404540
""";
4541-
await TestRefactoringAsync(initialMarkup, changedMarkup).ConfigureAwait(false);
4541+
await TestRefactoringAsync(initialMarkup, changedMarkup);
45424542
}
45434543

45444544
[Fact, WorkItem("https://github.com/dotnet/roslyn/issues/78664")]
@@ -4561,7 +4561,7 @@ namespace N
45614561
public abstract record C(string? S);
45624562
}
45634563
""";
4564-
await TestRefactoringAsync(initialMarkup, changedMarkup).ConfigureAwait(false);
4564+
await TestRefactoringAsync(initialMarkup, changedMarkup);
45654565
}
45664566

45674567
#pragma warning disable RS1042 // Do not implement

0 commit comments

Comments
 (0)