mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
fixed broken integeration test
This commit is contained in:
parent
aba81a522a
commit
42a7e062d6
1 changed files with 2 additions and 2 deletions
|
@ -52,11 +52,11 @@ namespace NzbDrone.Integration.Test.Client
|
||||||
Delete(request);
|
Delete(request);
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<string> InvalidPost(TResource body)
|
public List<dynamic> InvalidPost(TResource body)
|
||||||
{
|
{
|
||||||
var request = BuildRequest();
|
var request = BuildRequest();
|
||||||
request.AddBody(body);
|
request.AddBody(body);
|
||||||
return Post<List<string>>(request, HttpStatusCode.BadRequest);
|
return Post<List<dynamic>>(request, HttpStatusCode.BadRequest);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected RestRequest BuildRequest(string command = "")
|
protected RestRequest BuildRequest(string command = "")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue