Skip to content

Commit c850919

Browse files
committed
Fix missing semicolons
1 parent 7b52d9d commit c850919

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/core/json_report_sample.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@
3434
],
3535
"combination": [
3636
{
37-
"class": "Landroid/telephony/TelephonyManager",
37+
"class": "Landroid/telephony/TelephonyManager;",
3838
"method": "getCellLocation",
3939
"descriptor": "()Landroid/telephony/CellLocation;"
4040
},
4141
{
42-
"class": "Landroid/telephony/SmsManager",
42+
"class": "Landroid/telephony/SmsManager;",
4343
"method": "sendTextMessage",
4444
"descriptor": "(Ljava/lang/String; Ljava/lang/String; Ljava/lang/String; Landroid/app/PendingIntent; Landroid/app/PendingIntent;)V"
4545
}

tests/core/test_quark.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def test_find_previous_method_without_result(self, quark_obj):
125125
"()Ljava/lang/String;",
126126
)[0]
127127
base_method = quark_obj.apkinfo.find_method(
128-
"Landroid/telephony/TelephonyManager",
128+
"Landroid/telephony/TelephonyManager;",
129129
"getCellLocation",
130130
"()Landroid/telephony/CellLocation;",
131131
)[0]
@@ -143,7 +143,7 @@ def test_find_previous_method_with_result(self, quark_obj):
143143
wrapper = []
144144

145145
base_method = quark_obj.apkinfo.find_method(
146-
"Landroid/telephony/TelephonyManager",
146+
"Landroid/telephony/TelephonyManager;",
147147
"getCellLocation",
148148
"()Landroid/telephony/CellLocation;",
149149
)[0]

0 commit comments

Comments
 (0)