Skip to content

Commit

Permalink
fix: more rename leftovers
Browse files Browse the repository at this point in the history
  • Loading branch information
exu committed Feb 17, 2022
1 parent 7dbc727 commit 1e4d26b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/api/v1/client/direct.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,10 +719,10 @@ func (c DirectAPIClient) ListTestSuiteExecutions(testSuiteName string, limit int
return c.getTestExecutionsFromResponse(resp)
}

func (c DirectAPIClient) getTestSuiteFromResponse(resp *http.Response) (test testkube.TestSuite, err error) {
func (c DirectAPIClient) getTestSuiteFromResponse(resp *http.Response) (testSuite testkube.TestSuite, err error) {
defer resp.Body.Close()

err = json.NewDecoder(resp.Body).Decode(&test)
err = json.NewDecoder(resp.Body).Decode(&testSuite)
return
}

Expand Down

0 comments on commit 1e4d26b

Please sign in to comment.