File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
test/EFCore.SqlServer.FunctionalTests/Update Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments