Test GitHub action test failure

This commit is contained in:
brandon-lewis 2023-03-29 19:34:40 -04:00
parent 24118e991e
commit 7eb5af9975
2 changed files with 1 additions and 3 deletions

View file

@ -158,6 +158,3 @@ The Spring PetClinic sample application is released under version 2.0 of the [Ap
[spring-petclinic-graphql]: https://github.com/spring-petclinic/spring-petclinic-graphql
[spring-petclinic-kotlin]: https://github.com/spring-petclinic/spring-petclinic-kotlin
[spring-petclinic-rest]: https://github.com/spring-petclinic/spring-petclinic-rest
# GitHub Actions Test
- Brandon Test 1

View file

@ -55,6 +55,7 @@ class ValidatorTests {
ConstraintViolation<Person> violation = constraintViolations.iterator().next();
assertThat(violation.getPropertyPath().toString()).isEqualTo("firstName");
assertThat(violation.getMessage()).isEqualTo("must not be empty");
assertThat(1).isEqualTo(2);
}
}