Skip to content

Commit

Permalink
ci: fix sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianMazur committed Nov 20, 2024
1 parent 0fa09fb commit 002be91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/e2e_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
adb shell locksettings set-pin 1111
adb shell am start -a android.settings.SECURITY_SETTINGS
sleep 3
if [[ ${{ matrix.api-level }} -le 33 ]]; then
if [ ${{ matrix.api-level }} -le 33 ]; then
adb shell input tap 274 1150
else
adb shell input tap 274 1800
Expand All @@ -142,7 +142,7 @@ jobs:
sleep 3
adb shell input tap 274 1300
sleep 3
if [[ ${{ matrix.api-level }} -le 33 ]]; then
if [ ${{ matrix.api-level }} -le 33 ]; then
adb shell input tap 900 2200
sleep 3
adb shell input tap 900 2200
Expand Down

0 comments on commit 002be91

Please sign in to comment.