Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable Full Support for Multiple XCTest/XCUITest Cases configured in xctestrun File #563

Merged
merged 7 commits into from
Feb 12, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
use defer to safely close svc
  • Loading branch information
bahrimootaz committed Feb 12, 2025
commit 017823db469a58847b801201524395bf615ff918
2 changes: 1 addition & 1 deletion ios/testmanagerd/xcuitestrunner.go
Original file line number Diff line number Diff line change
Expand Up @@ -626,8 +626,8 @@ func getUserInstalledApps(err error, device ios.DeviceEntry) []installationproxy
log.WithError(err).Debug("we couldn't create ios device connection")
return nil
}
defer svc.Close()
installedApps, err := svc.BrowseUserApps()
svc.Close()
if err != nil {
log.WithError(err).Debug("we couldn't fetch the installed user apps")
return nil
Expand Down
Loading