File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class AssetsTest {
6464 val temp = tempPath()
6565 signingReportTask(temp).runCommand { _, report ->
6666 println (report)
67- val key = report.extractFingerprint()
67+ val key = report.extractFingerprint(variant = " prodDebug " )
6868 println (key)
6969 assert (key.isNotEmpty())
7070 val files = locateAssetsFiles(
@@ -94,7 +94,7 @@ class AssetsTest {
9494 val temp = tempPath()
9595 signingReportTask(temp).runCommand { _, report ->
9696 println (report)
97- val key = report.extractFingerprint()
97+ val key = report.extractFingerprint(variant = " prodDebug " )
9898 println (key)
9999 assert (key.isNotEmpty())
100100 val files = locateAssetsFiles(
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class SCTest {
4141 val temp = tempPath()
4242 signingReportTask(temp).runCommand { _, report ->
4343 println (report)
44- assert (report.extractFingerprint().split(" :" ).size == 20 )
44+ assert (report.extractFingerprint(variant = " prodDebug " ).split(" :" ).size == 20 )
4545 }
4646 }
4747
@@ -97,7 +97,7 @@ class SCTest {
9797 val temp = tempPath()
9898 signingReportTask(temp).runCommand { _, report ->
9999 println (report)
100- val key = report.extractFingerprint()
100+ val key = report.extractFingerprint(variant = " prodDebug " )
101101 println (key)
102102 assert (key.isNotEmpty())
103103 val files = locateResourceFiles(" $temp${File .separator}$testProjectName " , configuration)
@@ -121,7 +121,7 @@ class SCTest {
121121 val temp = tempPath()
122122 signingReportTask(temp).runCommand { _, report ->
123123 println (report)
124- val key = report.extractFingerprint()
124+ val key = report.extractFingerprint(variant = " prodDebug " )
125125 println (key)
126126 assert (key.isNotEmpty())
127127 val files = locateResourceFiles(" $temp${File .separator}$testProjectName " , configuration)
You can’t perform that action at this time.
0 commit comments