Issue #5233 - correcting NCSARequestLogTest expectation on unsupported version

Signed-off-by: Joakim Erdfelt <joakim.erdfelt@gmail.com>
This commit is contained in:
Joakim Erdfelt 2020-09-08 05:59:41 -05:00
parent b2e0f69ea8
commit 56b1d17d79
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ public class NcsaRequestLogTest
_connector.getResponse("METHOD /foo HTTP/9\n\n");
String log = _entries.poll(5, TimeUnit.SECONDS);
assertThat(log, containsString("\"- - -\""));
assertThat(log, containsString(" 400 "));
assertThat(log, containsString(" 505 "));
}
@ParameterizedTest()