From 14e6a49912bebbafb4fadb31e98f687ba703e86a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Hahn?= Date: Thu, 30 Oct 2014 12:50:53 +0000 Subject: [PATCH] client test suite: tweak --- test/Servant/ClientSpec.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Servant/ClientSpec.hs b/test/Servant/ClientSpec.hs index 558f9598..e9e8f18a 100644 --- a/test/Servant/ClientSpec.hs +++ b/test/Servant/ClientSpec.hs @@ -20,8 +20,8 @@ import Servant.Server import Servant.ServerSpec type Api = - ("a" :> Get Person) - :<|> ("b" :> Capture "name" String :> Get Person) + "get" :> Get Person + :<|> "capture" :> Capture "name" String :> Get Person api :: Proxy Api api = Proxy