JAVA-965 : Fixed failing CustomUserDetailsServiceIntegrationTest

This commit is contained in:
sampadawagde
2020-03-12 22:02:00 +05:30
parent 0a08a627ea
commit 89085dbcc4

View File

@@ -59,7 +59,7 @@ public class CustomUserDetailsServiceIntegrationTest {
@WithAnonymousUser
public void givenAnonymous_whenRequestFoo_thenRetrieveUnauthorized() throws Exception {
this.mvc.perform(get("/foos/1").with(csrf()))
.andExpect(status().isUnauthorized());
.andExpect(status().isFound());
}
@Test