We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74638d7 commit 4cd1b9bCopy full SHA for 4cd1b9b
1 file changed
src/test/kotlin/app/morphe/cli/command/PatchingTest.kt
@@ -17,7 +17,7 @@ class PatchingTest {
17
private val logger = Logger.getLogger(PatchingTest::class.java.name)
18
19
@ParameterizedTest
20
- @ValueSource(booleans = [false, true])
+ @ValueSource(booleans = [true, false])
21
fun `patch example apk`(useArsclib: Boolean) {
22
val apkFileStream = javaClass.getResourceAsStream("/nowinandroid-apk")
23
val patchesFileStream = javaClass.getResourceAsStream("/patches.mpp")
@@ -73,8 +73,8 @@ class PatchingTest {
73
apkFile.absolutePath
74
)
75
76
- if (useArsclib) {
77
- args += "--use-arsclib"
+ if (!useArsclib) {
+ args += "--force-apktool"
78
}
79
80
return CommandLine(MainCommand).execute(*args)
0 commit comments