From 299f02e09b96f935525967f22acc72b15b011d80 Mon Sep 17 00:00:00 2001 From: P-Kalyan426 Date: Thu, 18 Jan 2024 16:29:49 +0530 Subject: [PATCH] break a test --- .../springframework/samples/petclinic/model/ValidatorTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java b/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java index 9fcd5987a..8227b7e75 100644 --- a/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java +++ b/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java @@ -45,7 +45,7 @@ class ValidatorTests { LocaleContextHolder.setLocale(Locale.ENGLISH); Person person = new Person(); - person.setFirstName(""); + person.setFirstName("notempty"); person.setLastName("smith"); Validator validator = createValidator();