Skip to content

Commit

Permalink
fix typo in appium status function name
Browse files Browse the repository at this point in the history
  • Loading branch information
shamanec committed Aug 6, 2024
1 parent e65fe6d commit 4aec92d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions provider/devices/common.go
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ func setupAndroidDevice(device *models.Device) {
}

go startAppium(device)
go checkAppiumtUp(device)
go checkAppiumUp(device)

select {
case <-device.AppiumReadyChan:
Expand Down Expand Up @@ -468,7 +468,7 @@ func setupIOSDevice(device *models.Device) {
}

go startAppium(device)
go checkAppiumtUp(device)
go checkAppiumUp(device)

// Wait until WebDriverAgent successfully starts
select {
Expand Down
2 changes: 1 addition & 1 deletion provider/devices/ios.go
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ func checkWebDriverAgentUp(device *models.Device) {
}
}

func checkAppiumtUp(device *models.Device) {
func checkAppiumUp(device *models.Device) {
var netClient = &http.Client{
Timeout: time.Second * 120,
}
Expand Down

0 comments on commit 4aec92d

Please sign in to comment.