aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Karau <holden@us.ibm.com>2015-12-15 11:38:57 +0000
committerSean Owen <sowen@cloudera.com>2015-12-15 11:38:57 +0000
commitc59df8c51609a0d6561ae1868e7970b516fb1811 (patch)
tree578df5e869794a25af5347cbf834176110d6862e
parent606f99b942a25dc3d86138b00026462ffe58cded (diff)
downloadspark-c59df8c51609a0d6561ae1868e7970b516fb1811.tar.gz
spark-c59df8c51609a0d6561ae1868e7970b516fb1811.tar.bz2
spark-c59df8c51609a0d6561ae1868e7970b516fb1811.zip
[SPARK-12332][TRIVIAL][TEST] Fix minor typo in ResetSystemProperties
Fix a minor typo (unbalanced bracket) in ResetSystemProperties. Author: Holden Karau <holden@us.ibm.com> Closes #10303 from holdenk/SPARK-12332-trivial-typo-in-ResetSystemProperties-comment.
-rw-r--r--core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala b/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
index c58db5e606..60fb7abb66 100644
--- a/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
+++ b/core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala
@@ -45,7 +45,7 @@ private[spark] trait ResetSystemProperties extends BeforeAndAfterEach { this: Su
var oldProperties: Properties = null
override def beforeEach(): Unit = {
- // we need SerializationUtils.clone instead of `new Properties(System.getProperties()` because
+ // we need SerializationUtils.clone instead of `new Properties(System.getProperties())` because
// the later way of creating a copy does not copy the properties but it initializes a new
// Properties object with the given properties as defaults. They are not recognized at all
// by standard Scala wrapper over Java Properties then.