Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
rillgen-saucelabs committed Jan 17, 2025
1 parent 6091a0e commit 18355cf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions internal/http/rdcservice.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ type RDCSessionRequest struct {
TestFramework string `json:"test_framework,omitempty"`
AppID string `json:"app_id,omitempty"`
TestAppID string `json:"test_app_id,omitempty"`
XCTestRunFileId string `json:"xc_test_run_file,omitempty"`
XCTestRunFileID string `json:"xc_test_run_file,omitempty"`
OtherApps []string `json:"other_apps,omitempty"`
DeviceQuery DeviceQuery `json:"device_query,omitempty"`
TestOptions map[string]string `json:"test_options,omitempty"`
Expand Down Expand Up @@ -119,7 +119,7 @@ func (c *RDCService) StartJob(ctx context.Context, opts job.StartOptions) (job.J
TestName: opts.Name,
AppID: opts.App,
TestAppID: opts.TestApp,
XCTestRunFileId: opts.XCTestRunFile,
XCTestRunFileID: opts.XCTestRunFile,
OtherApps: opts.OtherApps,
TestOptions: c.formatEspressoArgs(opts.TestOptions),
TestsToRun: opts.TestsToRun,
Expand Down
2 changes: 1 addition & 1 deletion internal/saucecloud/archive_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"gotest.tools/v3/fs"
)

func ensureAppsAreIpa(t *testing.T) {
func TestEnsureAppsAreIpa(t *testing.T) {
dir := fs.NewDir(t, "my-app",
fs.WithDir("my-app.app",
fs.WithFile("check-me.txt", "check-me",
Expand Down

0 comments on commit 18355cf

Please sign in to comment.