File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
resource-managers/yarn/src/test/scala/org/apache/spark/deploy/yarn Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments