Skip to content

Commit

Permalink
Add appId to test
Browse files Browse the repository at this point in the history
  • Loading branch information
aarondav committed Nov 7, 2014
1 parent 538f2a3 commit b8e2a49
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ import org.scalatest.{BeforeAndAfterAll, BeforeAndAfterEach, FunSuite, ShouldMat

class NettyBlockTransferSecuritySuite extends FunSuite with MockitoSugar with ShouldMatchers {
test("security default off") {
testConnection(new SparkConf, new SparkConf) match {
val conf = new SparkConf()
.set("spark.app.id", "app-id")
testConnection(conf, conf) match {
case Success(_) => // expected
case Failure(t) => fail(t)
}
Expand Down

0 comments on commit b8e2a49

Please sign in to comment.