Skip to content

Commit

Permalink
fix: don't break tests (#2090)
Browse files Browse the repository at this point in the history
  • Loading branch information
amanjeetsingh150 authored Oct 15, 2024
1 parent 61fcbe0 commit b565824
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ internal class MaestroCommandSerializationTest {
{
"tapOnElement" : {
"selector" : {
"textRegex" : "[A-f0-9]"
"textRegex" : "[A-f0-9]",
"optional" : false
},
"retryIfNoChange" : false,
"waitUntilVisible" : true,
Expand Down Expand Up @@ -234,10 +235,12 @@ internal class MaestroCommandSerializationTest {
{
"assertCommand" : {
"visible" : {
"textRegex" : "[A-f0-9]"
"textRegex" : "[A-f0-9]",
"optional" : false
},
"notVisible" : {
"textRegex" : "\\s"
"textRegex" : "\\s",
"optional" : false
},
"optional" : false
}
Expand Down

0 comments on commit b565824

Please sign in to comment.