aboutsummaryrefslogtreecommitdiff
path: root/core/src
diff options
context:
space:
mode:
authorReynold Xin <rxin@databricks.com>2016-05-27 21:20:02 -0700
committerReynold Xin <rxin@databricks.com>2016-05-27 21:20:02 -0700
commit73178c75565e20f53e6ee1478f3d976732c64438 (patch)
treed299dcf3debb71c434688c75d0abdf8f03b576a3 /core/src
parent9893dc975784551a62f65bbd709f8972e0204b2a (diff)
downloadspark-73178c75565e20f53e6ee1478f3d976732c64438.tar.gz
spark-73178c75565e20f53e6ee1478f3d976732c64438.tar.bz2
spark-73178c75565e20f53e6ee1478f3d976732c64438.zip
[SPARK-15633][MINOR] Make package name for Java tests consistent
## What changes were proposed in this pull request? This is a simple patch that makes package names for Java 8 test suites consistent. I moved everything to test.org.apache.spark to we can test package private APIs properly. Also added "java8" as the package name so we can easily run all the tests related to Java 8. ## How was this patch tested? This is a test only change. Author: Reynold Xin <rxin@databricks.com> Closes #13364 from rxin/SPARK-15633.
Diffstat (limited to 'core/src')
-rw-r--r--core/src/test/scala/org/apache/spark/SparkFunSuite.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/SparkFunSuite.scala b/core/src/test/scala/org/apache/spark/SparkFunSuite.scala
index 0081bca639..cd876807f8 100644
--- a/core/src/test/scala/org/apache/spark/SparkFunSuite.scala
+++ b/core/src/test/scala/org/apache/spark/SparkFunSuite.scala
@@ -26,7 +26,7 @@ import org.apache.spark.util.AccumulatorContext
/**
* Base abstract class for all unit tests in Spark for handling common functionality.
*/
-private[spark] abstract class SparkFunSuite
+abstract class SparkFunSuite
extends FunSuite
with BeforeAndAfterAll
with Logging {