Skip to content

Commit 79105f8

Browse files
committed
Revert style changes.
1 parent 4ed085b commit 79105f8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resource-managers/yarn/src/test/scala/org/apache/spark/deploy/yarn/ClientSuite.scala

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,15 @@ class ClientSuite extends SparkFunSuite with Matchers with BeforeAndAfterAll
116116
val cp = env("CLASSPATH").split(":|;|<CPS>")
117117
s"$SPARK,$USER,$ADDED".split(",").foreach({ entry =>
118118
val uri = new URI(entry)
119-
if (LOCAL_SCHEME.equals(uri.getScheme)) {
120-
cp should contain (uri.getPath)
119+
if (LOCAL_SCHEME.equals(uri.getScheme())) {
120+
cp should contain (uri.getPath())
121121
} else {
122-
cp should not contain uri.getPath
122+
cp should not contain uri.getPath()
123123
}
124124
})
125125
cp should not contain "local"
126126
cp should contain(PWD)
127-
cp should contain (s"$PWD${Path.SEPARATOR}$LOCALIZED_CONF_DIR")
127+
cp should contain (s"$PWD${Path.SEPARATOR}${LOCALIZED_CONF_DIR}")
128128
cp should not contain APP_JAR
129129
}
130130

0 commit comments

Comments
 (0)