Skip to content

Commit 402a1de

Browse files
committed
Update Helix test TFM
1 parent 5638045 commit 402a1de

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

eng/helix.proj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@
7373
</ItemGroup>
7474

7575
<PropertyGroup>
76-
<XUnitPublishTargetFramework>net9.0</XUnitPublishTargetFramework>
76+
<XUnitPublishTargetFramework>net10.0</XUnitPublishTargetFramework>
7777
<XUnitRuntimeTargetFramework>netcoreapp2.0</XUnitRuntimeTargetFramework>
78-
<XUnitRunnerVersion>2.4.2</XUnitRunnerVersion>
78+
<XUnitRunnerVersion>2.9.2</XUnitRunnerVersion>
7979
<XUnitArguments></XUnitArguments>
8080
<XUnitWorkItemTimeout Condition = "'$(XUnitWorkItemTimeout)' == ''">02:00:00</XUnitWorkItemTimeout>
8181
</PropertyGroup>

test/EFCore.SqlServer.FunctionalTests/Update/MismatchedKeyTypesSqlServerTest.cs

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -797,7 +797,12 @@ public async Task InitializeAsync()
797797
}
798798

799799
public async Task DisposeAsync()
800-
=> await Store.DisposeAsync();
800+
{
801+
if (Store != null)
802+
{
803+
await Store.DisposeAsync();
804+
}
805+
}
801806
}
802807

803808
private class TemporaryByteValueGenerator : ValueGenerator<int>

0 commit comments

Comments
 (0)