Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-fan committed Mar 12, 2019
1 parent a53748d commit 32fdb64
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,10 @@ class CaseInsensitiveStringMapSuite extends SparkFunSuite {
assert(!options.getBoolean("isFoo2", true))
assert(options.getBoolean("isBar", true))
assert(!options.getBoolean("isBar", false))
assert(!options.getBoolean("FOO", true))

intercept[IllegalArgumentException] {
options.getBoolean("FOO", true)
}
}

test("getLong") {
Expand Down

0 comments on commit 32fdb64

Please sign in to comment.