summaryrefslogtreecommitdiff
path: root/cask/test/src/test/cask/VariableRoutes.scala
diff options
context:
space:
mode:
Diffstat (limited to 'cask/test/src/test/cask/VariableRoutes.scala')
-rw-r--r--cask/test/src/test/cask/VariableRoutes.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/cask/test/src/test/cask/VariableRoutes.scala b/cask/test/src/test/cask/VariableRoutes.scala
index d1816ab..c997d39 100644
--- a/cask/test/src/test/cask/VariableRoutes.scala
+++ b/cask/test/src/test/cask/VariableRoutes.scala
@@ -7,8 +7,8 @@ object VariableRoutes extends cask.MainRoutes{
}
@cask.get("/post/:postId")
- def showPost(postId: Int, query: Seq[String]) = {
- s"Post $postId $query"
+ def showPost(postId: Int, param: Seq[String]) = {
+ s"Post $postId $param"
}
@cask.get("/path", subpath = true)