remove debugging print

This commit is contained in:
Sönke Hahn 2016-01-09 12:34:52 +01:00
parent 66628ca043
commit 4384c1df07

View file

@ -29,7 +29,6 @@ getConfigEntrySpec = describe "getConfigEntry" $ do
it "allows to distinguish between different config entries with the same type by tag" $ do it "allows to distinguish between different config entries with the same type by tag" $ do
let cfg = 'a' .: 'b' .: EmptyConfig :: Config '[ConfigEntry 1 Char, ConfigEntry 2 Char] let cfg = 'a' .: 'b' .: EmptyConfig :: Config '[ConfigEntry 1 Char, ConfigEntry 2 Char]
print cfg
getConfigEntry (Proxy :: Proxy 1) cfg `shouldBe` 'a' getConfigEntry (Proxy :: Proxy 1) cfg `shouldBe` 'a'
context "Show instance" $ do context "Show instance" $ do