From 7bed304f5ce8aa6358f9b62bef2712e66493685e Mon Sep 17 00:00:00 2001 From: "Rodrigo S. Watanabe" Date: Tue, 3 Dec 2024 15:47:56 -0300 Subject: [PATCH] fix: assert condition command timeout parsing --- .../src/main/java/maestro/orchestra/Commands.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maestro-orchestra-models/src/main/java/maestro/orchestra/Commands.kt b/maestro-orchestra-models/src/main/java/maestro/orchestra/Commands.kt index f666d5a5bd..3cfabbe67b 100644 --- a/maestro-orchestra-models/src/main/java/maestro/orchestra/Commands.kt +++ b/maestro-orchestra-models/src/main/java/maestro/orchestra/Commands.kt @@ -372,7 +372,7 @@ data class AssertCommand( data class AssertConditionCommand( val condition: Condition, - private val timeout: String? = null, + val timeout: String? = null, override val label: String? = null, override val optional: Boolean = false, ) : Command {