diff --git a/test/raven-integration/LogFiles/LogFiles.cs b/test/raven-integration/LogFiles/LogFiles.cs index 2ddb2b15..74fed21d 100644 --- a/test/raven-integration/LogFiles/LogFiles.cs +++ b/test/raven-integration/LogFiles/LogFiles.cs @@ -21,7 +21,8 @@ namespace raven_integration { ApiTextResponse t = await Util.GetTextResultAsync("LogFiles/log-ayanova.txt", await Util.GetTokenAsync("OpsAdminFull")); Util.ValidateHTTPStatusCode(t, 200); - t.TextResponse.Should().Contain("|INFO|");//assumes any log will have at least one INFO log item 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); }