9463: Fixed some integration tests broken because of the replication_desired addition...
[arvados.git] / sdk / go / arvadosclient / arvadosclient.go
index b67eaa59a6749fb7e9b1a3da5ad2617344fc799d..8cdfa484bd96df3f479c7a40c8bb6692eddc1da5 100644 (file)
@@ -273,7 +273,7 @@ func newAPIServerError(ServerAddress string, resp *http.Response) APIServerError
 // Returns a non-nil error if an error occurs making the API call, the
 // API responds with a non-successful HTTP status, or an error occurs
 // parsing the response body.
-func (c ArvadosClient) Call(method string, resourceType string, uuid string, action string, parameters Dict, output interface{}) error {
+func (c ArvadosClient) Call(method, resourceType, uuid, action string, parameters Dict, output interface{}) error {
        reader, err := c.CallRaw(method, resourceType, uuid, action, parameters)
        if reader != nil {
                defer reader.Close()