Skip to content

Commit db9aba4

Browse files
committed
Update tests for Rizin 0.4.x
1 parent 4ccedcd commit db9aba4

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
@@ -120,7 +120,7 @@ def test_android_apis(self, apkinfo):
120120
if apkinfo.core_library == "androguard":
121121
assert len(apkinfo.android_apis) == 1270
122122
elif apkinfo.core_library == "rizin":
123-
assert len(apkinfo.android_apis) == 1269
123+
assert len(apkinfo.android_apis) == 1438
124124
assert api.issubset(apkinfo.android_apis)
125125

126126
def test_custom_methods(self, apkinfo):
@@ -139,7 +139,7 @@ def test_custom_methods(self, apkinfo):
139139
if apkinfo.core_library == "androguard":
140140
assert len(apkinfo.custom_methods) == 3999
141141
elif apkinfo.core_library == "rizin":
142-
assert len(apkinfo.custom_methods) == 3990
142+
assert len(apkinfo.custom_methods) == 3999
143143
assert test_custom_method.issubset(apkinfo.custom_methods)
144144

145145
def test_all_methods(self, apkinfo):
@@ -159,7 +159,7 @@ def test_all_methods(self, apkinfo):
159159
if apkinfo.core_library == "androguard":
160160
assert len(apkinfo.all_methods) == 5452
161161
elif apkinfo.core_library == "rizin":
162-
assert len(apkinfo.all_methods) == 5260
162+
assert len(apkinfo.all_methods) == 5451
163163

164164
assert test_custom_method.issubset(apkinfo.all_methods)
165165

0 commit comments

Comments
 (0)