Skip to content

Commit babae59

Browse files
authored
Merge pull request #174 from graphql-java/update-datetime-test-case
Fix test case
2 parents 7027775 + bd963fb commit babae59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/test/groovy/graphql/scalars/datetime/DateTimeScalarTest.groovy

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ class DateTimeScalarTest extends AbstractScalarTest {
6969
"2011-08-30T13:22:53.108" | CoercingParseValueException // No offset provided
7070
"2011-08-30T24:22:53.108Z" | CoercingParseValueException // 24 is not allowed as hour of the time
7171
"2010-02-30T21:22:53.108Z" | CoercingParseValueException // 30th of February is not a valid date
72-
"2010-02-11T21:22:53.108Z+25:11" | CoercingParseValueException // 25 is not a valid hour for offset
72+
"2010-02-11T21:22:53.108+25:11" | CoercingParseValueException // 25 is not a valid hour for offset
7373
}
7474

7575
def "datetime AST literal"() {
@@ -114,7 +114,7 @@ class DateTimeScalarTest extends AbstractScalarTest {
114114
"2011-08-30T13:22:53.108" | CoercingSerializeException // No offset provided
115115
"2011-08-30T24:22:53.108Z" | CoercingSerializeException // 24 is not allowed as hour of the time
116116
"2010-02-30T21:22:53.108Z" | CoercingSerializeException // 30th of February is not a valid date
117-
"2010-02-11T21:22:53.108Z+25:11" | CoercingSerializeException // 25 is not a valid hour for offset
117+
"2010-02-11T21:22:53.108+25:11" | CoercingSerializeException // 25 is not a valid hour for offset
118118
}
119119

120120
@Unroll
@@ -133,7 +133,7 @@ class DateTimeScalarTest extends AbstractScalarTest {
133133
mkStringValue("2011-08-30T13:22:53.108") | CoercingParseLiteralException // No offset provided
134134
mkStringValue("2011-08-30T24:22:53.108Z") | CoercingParseLiteralException // 24 is not allowed as hour of the time
135135
mkStringValue("2010-02-30T21:22:53.108Z") | CoercingParseLiteralException // 30th of February is not a valid date
136-
mkStringValue("2010-02-11T21:22:53.108Z+25:11") | CoercingParseLiteralException // 25 is not a valid hour for offset
136+
mkStringValue("2010-02-11T21:22:53.108+25:11") | CoercingParseLiteralException // 25 is not a valid hour for offset
137137
}
138138

139139
}

0 commit comments

Comments
 (0)