This commit is contained in:
2020-05-13 22:36:32 +00:00
parent 2201f9c72d
commit 69491c3093
6 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ namespace raven_integration
{
dynamic DCreds = new JObject();
DCreds.password = DCreds.login = "TEST_INACTIVE";
ApiResponse a = await Util.PostAsync("Auth", null, DCreds.ToString());
ApiResponse a = await Util.PostAsync("auth", null, DCreds.ToString());
Util.ValidateErrorCodeResponse(a,2003, 401);
}