Skip to content

Commit 2a0e584

Browse files
authored
Update Test_UseObservablePropertyOnSemiAutoPropertyCodeFixer.cs
1 parent 6c13cb5 commit 2a0e584

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/CommunityToolkit.Mvvm.SourceGenerators.Roslyn4120.UnitTests/Test_UseObservablePropertyOnSemiAutoPropertyCodeFixer.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,10 @@ public string Name
9090
{
9191
return field;
9292
}
93-
set => SetProperty(ref field, value);
93+
set
94+
{
95+
SetProperty(ref field, value);
96+
}
9497
}
9598
}
9699
""";

0 commit comments

Comments
 (0)