This commit is contained in:
2018-10-10 17:12:45 +00:00
parent 52d75398d0
commit 88d87019c2

View File

@@ -21,7 +21,7 @@ namespace raven_integration
{
ApiTextResponse t = await Util.GetTextResultAsync("LogFiles/log-ayanova.txt", await Util.GetTokenAsync("OpsAdminFull"));
Util.ValidateHTTPStatusCode(t, 200);
string[] ExpectedLogItems = {"|Info|","|ERROR|", "|WARN|"};//assumes any log will have at least one of these items in it
string[] ExpectedLogItems = {"|INFO|","|ERROR|", "|WARN|"};//assumes any log will have at least one of these items in it
t.TextResponse.Should().ContainAny(ExpectedLogItems);
}