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

@@ -6,7 +6,7 @@ using FluentAssertions;
namespace raven_integration
{
public class Auth
public class auth
{
/// <summary>
///
@@ -25,7 +25,7 @@ namespace raven_integration
dynamic d = new JObject();
d.login = "BOGUS";
d.password = "ACCOUNT";
ApiResponse a = await Util.PostAsync("Auth", null, d.ToString());
ApiResponse a = await Util.PostAsync("auth", null, d.ToString());
Util.ValidateErrorCodeResponse(a, 2003, 401);
}