Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit 11574b4

Browse files
committed
fix: exception message in unit test
1 parent 7a76bab commit 11574b4

File tree

1 file changed

+1
-4
lines changed
  • graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/extendedscalars

1 file changed

+1
-4
lines changed

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/extendedscalars/ExtendedScalarsTest.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,7 @@ void shouldThrowErrorOnStartupIfExtendedScalarDoesNotExists() {
3030
assertThatExceptionOfType(ApplicationContextException.class)
3131
.isThrownBy(application::run)
3232
.withMessage(
33-
"Invalid extended scalar name(s) found: BadDecimal, Datee. Valid names are: BigDecimal, "
34-
+ "BigInteger, Byte, Char, Date, DateTime, JSON, LocalTime, Locale, Long, NegativeFloat, NegativeInt, "
35-
+ "NonNegativeFloat, NonNegativeInt, NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, "
36-
+ "PositiveInt, Short, Time, UUID, Url.");
33+
"Invalid extended scalar name(s) found: BadDecimal, Datee. Valid names are: BigDecimal, BigInteger, Byte, Char, CountryCode, Currency, Date, DateTime, JSON, LocalTime, Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt, NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, PositiveInt, Short, Time, UUID, Url.");
3734
}
3835

3936
@Test

0 commit comments

Comments
 (0)