diff --git a/test/raven-integration/LogFiles/LogFiles.cs b/test/raven-integration/LogFiles/LogFiles.cs index 74fed21d..6e7f5045 100644 --- a/test/raven-integration/LogFiles/LogFiles.cs +++ b/test/raven-integration/LogFiles/LogFiles.cs @@ -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); }