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

Commit cd7e7f7

Browse files
committed
fix(deps): update dependency com.graphql-java:graphql-java-extended-scalars to v18
1 parent 21dd137 commit cd7e7f7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/web/servlet/test/aliasedscalars/AliasedScalarsIncorrectConfigurationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ void shouldThrowErrorOnStartupIfScalarDoesNotExists() {
3434
"Scalar(s) 'BugDecimal' cannot be aliased."
3535
+ " Only the following scalars can be aliased by configuration: BigDecimal,"
3636
+ " BigInteger, Boolean, Byte, Char, Date, DateTime, Float, ID, Int, JSON,"
37-
+ " Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
37+
+ " LocalTime, Locale, Long, NegativeFloat, NegativeInt, NonNegativeFloat, NonNegativeInt,"
3838
+ " NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, PositiveInt, Short,"
39-
+ " String, Time, Url. Note that custom scalar beans cannot be aliased this way.");
39+
+ " String, Time, UUID, Url. Note that custom scalar beans cannot be aliased this way.");
4040
}
4141

4242
@Test

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ void shouldThrowErrorOnStartupIfExtendedScalarDoesNotExists() {
3131
.isThrownBy(application::run)
3232
.withMessage(
3333
"Invalid extended scalar name(s) found: BadDecimal, Datee. Valid names are: BigDecimal, "
34-
+ "BigInteger, Byte, Char, Date, DateTime, JSON, Locale, Long, NegativeFloat, NegativeInt, "
34+
+ "BigInteger, Byte, Char, Date, DateTime, JSON, LocalTime, Locale, Long, NegativeFloat, NegativeInt, "
3535
+ "NonNegativeFloat, NonNegativeInt, NonPositiveFloat, NonPositiveInt, Object, PositiveFloat, "
36-
+ "PositiveInt, Short, Time, Url.");
36+
+ "PositiveInt, Short, Time, UUID, Url.");
3737
}
3838

3939
@Test

0 commit comments

Comments
 (0)