Skip to content

Commit 3afd5a7

Browse files
committed
Print also percentage in package size difference
1 parent fd8d3e0 commit 3afd5a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ApkDescription.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ public void Compare (ApkDescription other)
217217
foreach (var total in totalDifferences)
218218
PrintDifference ($"{total.Key} ", total.Value.Difference, total.Value.OriginalTotal);
219219

220-
PrintDifference ("Package size difference", other.PackageSize - PackageSize);
220+
PrintDifference ("Package size difference", other.PackageSize - PackageSize, PackageSize);
221221
}
222222

223223
void CompareEntries (KeyValuePair<string, FileProperties> entry, KeyValuePair<string, FileProperties> other, ApkDescription otherApk, EntryDiff diff)

0 commit comments

Comments
 (0)