Skip to content

Commit

Permalink
Review feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcelo Vanzin committed Aug 6, 2014
1 parent c1a257a commit cc84b89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ object YarnSparkHadoopUtil {
arg.charAt(i) match {
case '$' => escaped.append("\\$")
case '"' => escaped.append("\\\"")
case '\'' => escaped.append("'\\\"'\\\"'")
case '\'' => escaped.append("'\\''")
case c => escaped.append(c)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class YarnSparkHadoopUtilSuite extends FunSuite with Matchers with Logging {
}

if (!hasBash) {
logInfo("Cannot execute bash, skipping all tests.")
logWarning("Cannot execute bash, skipping bash tests.")
}

def bashTest(name: String)(fn: => Unit) =
Expand Down

0 comments on commit cc84b89

Please sign in to comment.