Skip to content

Commit fb4e9d5

Browse files
haeter525sidra-asa
authored andcommitted
Update tests for Rizin 0.4.x
1 parent 972d4bb commit fb4e9d5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/core/test_apkinfo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def test_android_apis(self, apkinfo):
140140
if apkinfo.core_library == "androguard":
141141
assert len(apkinfo.android_apis) == 1270
142142
elif apkinfo.core_library == "rizin":
143-
assert len(apkinfo.android_apis) == 1269
143+
assert len(apkinfo.android_apis) == 1438
144144
assert api.issubset(apkinfo.android_apis)
145145

146146
def test_custom_methods(self, apkinfo):
@@ -159,7 +159,7 @@ def test_custom_methods(self, apkinfo):
159159
if apkinfo.core_library == "androguard":
160160
assert len(apkinfo.custom_methods) == 3999
161161
elif apkinfo.core_library == "rizin":
162-
assert len(apkinfo.custom_methods) == 3990
162+
assert len(apkinfo.custom_methods) == 3999
163163
assert test_custom_method.issubset(apkinfo.custom_methods)
164164

165165
def test_all_methods(self, apkinfo):
@@ -179,7 +179,7 @@ def test_all_methods(self, apkinfo):
179179
if apkinfo.core_library == "androguard":
180180
assert len(apkinfo.all_methods) == 5452
181181
elif apkinfo.core_library == "rizin":
182-
assert len(apkinfo.all_methods) == 5260
182+
assert len(apkinfo.all_methods) == 5451
183183

184184
assert test_custom_method.issubset(apkinfo.all_methods)
185185

0 commit comments

Comments
 (0)