File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
test/Sentry.Android.AssemblyReader.Tests Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ public void CreatesCorrectStoreReader()
4949#if ANDROID
5050 Skip . If ( true , "It's unknown whether the current Android app APK is an assembly store or not." ) ;
5151#endif
52- using var sut = GetSut ( false , true , isCompressed : true ) ;
52+ using var sut = GetSut ( isAot : false , isAssemblyStore : true , isCompressed : true ) ;
5353 switch ( TargetFramework )
5454 {
5555 case "net9.0" :
@@ -69,7 +69,7 @@ public void CreatesCorrectArchiveReader()
6969#if ANDROID
7070 Skip . If ( true , "It's unknown whether the current Android app APK is an assembly store or not." ) ;
7171#endif
72- using var sut = GetSut ( false , false , isCompressed : true ) ;
72+ using var sut = GetSut ( isAot : false , isAssemblyStore : false , isCompressed : true ) ;
7373 switch ( TargetFramework )
7474 {
7575 case "net9.0" :
@@ -88,7 +88,7 @@ public void CreatesCorrectArchiveReader()
8888 [ InlineData ( true ) ]
8989 public void ReturnsNullIfAssemblyDoesntExist ( bool isAssemblyStore )
9090 {
91- using var sut = GetSut ( false , isAssemblyStore , isCompressed : true ) ;
91+ using var sut = GetSut ( isAot : false , isAssemblyStore , isCompressed : true ) ;
9292 Assert . Null ( sut . TryReadAssembly ( "NonExistent.dll" ) ) ;
9393 }
9494
You can’t perform that action at this time.
0 commit comments