Skip to content
Snippets Groups Projects
Commit 0744d84c authored by Burak Yavuz's avatar Burak Yavuz Committed by Michael Armbrust
Browse files

[SPARK-16531][SQL][TEST] Remove timezone setting from DataFrameTimeWindowingSuite

## What changes were proposed in this pull request?

It's unnecessary. `QueryTest` already sets it.

Author: Burak Yavuz <brkyvz@gmail.com>

Closes #14170 from brkyvz/test-tz.
parent 01f09b16
No related branches found
No related tags found
No related merge requests found
......@@ -29,16 +29,6 @@ class DataFrameTimeWindowingSuite extends QueryTest with SharedSQLContext with B
import testImplicits._
override def beforeEach(): Unit = {
super.beforeEach()
TimeZone.setDefault(TimeZone.getTimeZone("UTC"))
}
override def afterEach(): Unit = {
super.beforeEach()
TimeZone.setDefault(null)
}
test("tumbling window groupBy statement") {
val df = Seq(
("2016-03-27 19:39:34", 1, "a"),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment