Skip to content

Commit c59df8c

Browse files
holdenksrowen
authored andcommitted
[SPARK-12332][TRIVIAL][TEST] Fix minor typo in ResetSystemProperties
Fix a minor typo (unbalanced bracket) in ResetSystemProperties. Author: Holden Karau <[email protected]> Closes #10303 from holdenk/SPARK-12332-trivial-typo-in-ResetSystemProperties-comment.
1 parent 606f99b commit c59df8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/test/scala/org/apache/spark/util/ResetSystemProperties.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ private[spark] trait ResetSystemProperties extends BeforeAndAfterEach { this: Su
4545
var oldProperties: Properties = null
4646

4747
override def beforeEach(): Unit = {
48-
// we need SerializationUtils.clone instead of `new Properties(System.getProperties()` because
48+
// we need SerializationUtils.clone instead of `new Properties(System.getProperties())` because
4949
// the later way of creating a copy does not copy the properties but it initializes a new
5050
// Properties object with the given properties as defaults. They are not recognized at all
5151
// by standard Scala wrapper over Java Properties then.

0 commit comments

Comments
 (0)