FIx windows test dependency

This commit is contained in:
James Agnew 2017-10-30 16:11:13 -04:00
parent 792035f8af
commit 34679081fb
1 changed files with 1 additions and 1 deletions

View File

@ -192,7 +192,7 @@ public class LoggingInterceptorDstu2Test {
ArgumentCaptor<String> captor = ArgumentCaptor.forClass(String.class);
verify(logger, timeout(1000).times(1)).info(captor.capture());
assertThat(captor.getValue(), matchesPattern("[1-9][0-9]{2}"));
assertThat(captor.getValue(), matchesPattern("[1-9][0-9]{1,3}"));
}
@Test