Skip to content

Commit e179019

Browse files
committed
Updating to graphql-java 17.x
Test for Local extra value input
1 parent 35a1d3e commit e179019

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

src/test/groovy/graphql/scalars/locale/LocaleScalarTest.groovy

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,11 @@ class LocaleScalarTest extends Specification {
2020
then:
2121
result == expectedValue
2222
where:
23-
input | expectedValue
24-
"en" | mkLocale("en")
25-
"ro-RO" | mkLocale("ro-RO")
26-
"zh-hakka" | mkLocale("zh-hakka")
23+
input | expectedValue
24+
"en" | mkLocale("en")
25+
"ro-RO" | mkLocale("ro-RO")
26+
"zh-hakka" | mkLocale("zh-hakka")
27+
mkLocale("en") | mkLocale("en")
2728
}
2829

2930
@Unroll

0 commit comments

Comments
 (0)