This commit is contained in:
2020-05-13 23:48:27 +00:00
parent f26782a563
commit 5a9291b9c4
3 changed files with 8 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ namespace raven_integration
{
//First determine if there is a requested key route because it's debug build dependent
//And doesn't exists if server was not debug built
ApiResponse a = await Util.GetAsync("BuildMode");
ApiResponse a = await Util.GetAsync("build-mode");
Util.ValidateDataReturnResponseOk(a);
var BuildMode = a.ObjectResponse["data"]["buildMode"].Value<string>();
BuildMode.Should().BeOneOf((new string[] { "DEBUG", "RELEASE" }));