Skip to content

Commit

Permalink
Merge pull request #166 from t2v/feature/fix_165
Browse files Browse the repository at this point in the history
Fix #165
  • Loading branch information
gakuzzzz committed Mar 8, 2016
2 parents c54b59d + 886d1c7 commit c8293bb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,8 +287,8 @@ class ApplicationSpec extends Specification {

"Messages" should {
"return list when user is authorized" in new WithApplication {
val res = Messages.list(FakeRequest().withLoggedIn(config)(1))
contentType(res) must equalTo("text/html")
val result = Messages.list(FakeRequest().withLoggedIn(config)(1))
contentType(result) must equalTo("text/html")
}
}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -291,8 +291,8 @@ class ApplicationSpec extends Specification {

"Messages" should {
"return list when user is authorized" in new WithApplication {
val res = Messages.list(FakeRequest().withLoggedIn(config)(1))
contentType(res) must equalTo("text/html")
val result = Messages.list(FakeRequest().withLoggedIn(config)(1))
contentType(result) must equalTo("text/html")
}
}

Expand Down

0 comments on commit c8293bb

Please sign in to comment.