Skip to content

Commit

Permalink
#1517 Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Sep 8, 2020
1 parent a920773 commit de9b134
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class ObservableCtrlTest extends PlaySpecification with TestAppBuilder {
"tlp":2,
"message":"love exciting and new",
"tags":["tagfile"],
"data":"multi\nline\ntest"
"data":["multi","line","test"]
}
""".stripMargin))
val result = app[ObservableCtrl].create("#1")(request)
Expand Down Expand Up @@ -151,7 +151,7 @@ class ObservableCtrlTest extends PlaySpecification with TestAppBuilder {
"tlp":2,
"message":"localhost",
"tags":["local", "host"],
"data":"127.0.0.1\n127.0.0.2"
"data":["127.0.0.1","127.0.0.2"]
}
"""))
val request = FakeRequest(
Expand Down

0 comments on commit de9b134

Please sign in to comment.