Skip to content

Commit 78817b7

Browse files
Update AndroidAssemblyReaderTests.cs
1 parent 7077f90 commit 78817b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/Sentry.Android.AssemblyReader.Tests/AndroidAssemblyReaderTests.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)