diff --git a/spring-test/src/main/java/org/springframework/test/web/servlet/assertj/MockMvcTester.java b/spring-test/src/main/java/org/springframework/test/web/servlet/assertj/MockMvcTester.java index e5ad39a4c1fe..9d2b49b94b71 100644 --- a/spring-test/src/main/java/org/springframework/test/web/servlet/assertj/MockMvcTester.java +++ b/spring-test/src/main/java/org/springframework/test/web/servlet/assertj/MockMvcTester.java @@ -108,7 +108,7 @@ * Both resolved and unresolved exceptions are considered a failure that can * be asserted as follows: *

- * // perform a GET on /boom and assert the message for the the exception
+ * // perform a GET on /boom and assert the message for the exception
  * assertThat(mvc.get().uri("/boom")).hasFailed()
  *         .failure().hasMessage("Test exception");
  *