summaryrefslogtreecommitdiff
path: root/cask/test/src/test
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-07-22 00:06:06 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-07-22 00:13:03 +0800
commitf08ecab418034f99f6fcf0a469d02f3435345cc2 (patch)
tree0a9fe1520fcc7491fbaecd5ca65b681ced8106ee /cask/test/src/test
parent1cfe997b4d8874738c2ed384dc221420b42f551b (diff)
downloadcask-f08ecab418034f99f6fcf0a469d02f3435345cc2.tar.gz
cask-f08ecab418034f99f6fcf0a469d02f3435345cc2.tar.bz2
cask-f08ecab418034f99f6fcf0a469d02f3435345cc2.zip
renamings
Diffstat (limited to 'cask/test/src/test')
-rw-r--r--cask/test/src/test/cask/VariableRoutes.scala4
1 files changed, 1 insertions, 3 deletions
diff --git a/cask/test/src/test/cask/VariableRoutes.scala b/cask/test/src/test/cask/VariableRoutes.scala
index 1dda4e6..d1816ab 100644
--- a/cask/test/src/test/cask/VariableRoutes.scala
+++ b/cask/test/src/test/cask/VariableRoutes.scala
@@ -1,7 +1,5 @@
package test.cask
-import cask.Subpath
-
object VariableRoutes extends cask.MainRoutes{
@cask.get("/user/:userName")
def showUserProfile(userName: String) = {
@@ -14,7 +12,7 @@ object VariableRoutes extends cask.MainRoutes{
}
@cask.get("/path", subpath = true)
- def showSubpath(subPath: Subpath) = {
+ def showSubpath(subPath: cask.Subpath) = {
s"Subpath ${subPath.value}"
}