Skip to content

Commit

Permalink
Fix androidArgs Test
Browse files Browse the repository at this point in the history
  • Loading branch information
bootstraponline committed Nov 14, 2018
1 parent a45244c commit 29670fe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test_runner/src/test/kotlin/ftl/args/AndroidArgsTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ class AndroidArgsTest {
@Test
fun androidArgs() {
val androidArgs = AndroidArgs.load(androidNonDefault)
val expectedAppApk = appApk
val expectedTestApk = testApk

with(androidArgs) {
// GcloudYml
Expand All @@ -125,8 +127,8 @@ class AndroidArgsTest {
assert(resultsHistoryName ?: "", "android-history")

// AndroidGcloudYml
assert(appApk, appApk)
assert(testApk, testApk)
assert(appApk, expectedAppApk)
assert(testApk, expectedTestApk)
assert(autoGoogleLogin, false)
assert(useOrchestrator, false)
assert(environmentVariables, linkedMapOf("clearPackageData" to "true", "randomEnvVar" to "false"))
Expand Down

0 comments on commit 29670fe

Please sign in to comment.