File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ class AssetsTest {
64
64
val temp = tempPath()
65
65
signingReportTask(temp).runCommand { _, report ->
66
66
println (report)
67
- val key = report.extractFingerprint()
67
+ val key = report.extractFingerprint(variant = " prodDebug " )
68
68
println (key)
69
69
assert (key.isNotEmpty())
70
70
val files = locateAssetsFiles(
@@ -94,7 +94,7 @@ class AssetsTest {
94
94
val temp = tempPath()
95
95
signingReportTask(temp).runCommand { _, report ->
96
96
println (report)
97
- val key = report.extractFingerprint()
97
+ val key = report.extractFingerprint(variant = " prodDebug " )
98
98
println (key)
99
99
assert (key.isNotEmpty())
100
100
val files = locateAssetsFiles(
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class SCTest {
41
41
val temp = tempPath()
42
42
signingReportTask(temp).runCommand { _, report ->
43
43
println (report)
44
- assert (report.extractFingerprint().split(" :" ).size == 20 )
44
+ assert (report.extractFingerprint(variant = " prodDebug " ).split(" :" ).size == 20 )
45
45
}
46
46
}
47
47
@@ -97,7 +97,7 @@ class SCTest {
97
97
val temp = tempPath()
98
98
signingReportTask(temp).runCommand { _, report ->
99
99
println (report)
100
- val key = report.extractFingerprint()
100
+ val key = report.extractFingerprint(variant = " prodDebug " )
101
101
println (key)
102
102
assert (key.isNotEmpty())
103
103
val files = locateResourceFiles(" $temp${File .separator}$testProjectName " , configuration)
@@ -121,7 +121,7 @@ class SCTest {
121
121
val temp = tempPath()
122
122
signingReportTask(temp).runCommand { _, report ->
123
123
println (report)
124
- val key = report.extractFingerprint()
124
+ val key = report.extractFingerprint(variant = " prodDebug " )
125
125
println (key)
126
126
assert (key.isNotEmpty())
127
127
val files = locateResourceFiles(" $temp${File .separator}$testProjectName " , configuration)
You can’t perform that action at this time.
0 commit comments