We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f918510 commit 6deb47eCopy full SHA for 6deb47e
1 file changed
emanote/test/Emanote/Pandoc/Renderer/CalloutSpec.hs
@@ -10,6 +10,6 @@ spec :: Spec
10
spec = do
11
describe "callout" $ do
12
it "type" . hedgehog $ do
13
- parseCalloutType "[!tip]" === Just Tip
14
- parseCalloutType "[!Note]" === Just Note
15
- parseCalloutType "[!INFO]" === Just Info
+ parseCalloutType "[!tip]" === Just (CalloutType "tip")
+ parseCalloutType "[!Note]" === Just (CalloutType "note")
+ parseCalloutType "[!INFO]" === Just (CalloutType "info")
0 commit comments