Skip to content

Commit bb567b6

Browse files
committed
[SPARK-8199] fixed test
1 parent 3e095ba commit bb567b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/core/src/test/scala/org/apache/spark/sql/DateExpressionsSuite.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,11 +160,11 @@ class DateExpressionsSuite extends QueryTest {
160160

161161
checkAnswer(
162162
df.select(week_of_year("a"), week_of_year("b"), week_of_year("c")),
163-
Row(15, 15, 14))
163+
Row(15, 15, 15))
164164

165165
checkAnswer(
166166
df.selectExpr("week_of_year(a)", "week_of_year(b)", "week_of_year(c)"),
167-
Row(15, 15, 14))
167+
Row(15, 15, 15))
168168
}
169169

170170
}

0 commit comments

Comments
 (0)