Skip to content

Commit 5a66695

Browse files
authored
Merge pull request #44 from json-api-dotnet/dependabot-nuget-jetbrains.resharper.globaltools-2023.3.2
Bump jetbrains.resharper.globaltools from 2023.3.1 to 2023.3.2
2 parents 69485e4 + b6d9866 commit 5a66695

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"isRoot": true,
44
"tools": {
55
"jetbrains.resharper.globaltools": {
6-
"version": "2023.3.1",
6+
"version": "2023.3.2",
77
"commands": [
88
"jb"
99
]

test/JsonApiDotNetCoreMongoDbTests/IntegrationTests/AtomicOperations/BaseForAtomicOperationsTestsThatChangeOptions.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,7 @@ private static void CopyPropertyValues(JsonApiOptions source, JsonApiOptions des
4848
{
4949
foreach (PropertyInfo property in PropertyCache)
5050
{
51-
property.SetMethod!.Invoke(destination, new[]
52-
{
53-
property.GetMethod!.Invoke(source, null)
54-
});
51+
property.SetMethod!.Invoke(destination, [property.GetMethod!.Invoke(source, null)]);
5552
}
5653
}
5754
}

0 commit comments

Comments
 (0)