Skip to content

Commit

Permalink
Merge branch 'main' into feat/specs/monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
shortcuts authored Jul 10, 2023
2 parents b8c0a51 + e51e5cf commit b1ee994
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/analytics_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createAnalyticsClient() (*analytics.APIClient, *echoRequester) {
}
client := analytics.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/ingestion_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createIngestionClient() (*ingestion.APIClient, *echoRequester) {
}
client := ingestion.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/insights_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createInsightsClient() (*insights.APIClient, *echoRequester) {
}
client := insights.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createPersonalizationClient() (*personalization.APIClient, *echoRequester)
}
client := personalization.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/predict_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createPredictClient() (*predict.APIClient, *echoRequester) {
}
client := predict.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ func createSuggestionsClient() (*suggestions.APIClient, *echoRequester) {
}
client := suggestions.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/recommend_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ func createRecommendClient() (*recommend.APIClient, *echoRequester) {
}
client := recommend.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down
3 changes: 3 additions & 0 deletions tests/output/go/tests/methods/requests/search_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ func createSearchClient() (*search.APIClient, *echoRequester) {
}
client := search.NewClientWithConfig(cfg)

// so that the linter doesn't complain
_ = jsonassert.New(nil)

return client, echo
}

Expand Down

0 comments on commit b1ee994

Please sign in to comment.