1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-25 17:27:59 +00:00

fixed broken integeration test

This commit is contained in:
kay.one 2013-04-28 22:20:36 -07:00
parent aba81a522a
commit 42a7e062d6

View file

@ -52,11 +52,11 @@ public void Delete(int id)
Delete(request);
}
public List<string> InvalidPost(TResource body)
public List<dynamic> InvalidPost(TResource body)
{
var request = BuildRequest();
request.AddBody(body);
return Post<List<string>>(request, HttpStatusCode.BadRequest);
return Post<List<dynamic>>(request, HttpStatusCode.BadRequest);
}
protected RestRequest BuildRequest(string command = "")