Skip to content

Commit

Permalink
Should complete coverage for #66 by creating proper Map[Symbol, Any]. (
Browse files Browse the repository at this point in the history
  • Loading branch information
greebie authored and ruebot committed Oct 6, 2017
1 parent c8b7d2e commit 41cd498
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
@RunWith(classOf[JUnitRunner])
class JsonUtilTest extends FunSuite {
test("proper Map") {
val map = Map('a' -> 1, 'b' -> 2, 'c' -> 3)
val map: Map[Symbol, Any] = Map('a -> 1, 'b -> 2, 'c -> 3)
assert(JsonUtil.toJson(map) == """{"a":1,"b":2,"c":3}""")
}

Expand Down

0 comments on commit 41cd498

Please sign in to comment.