Skip to content

Commit 6deb47e

Browse files
committed
Fix tests
1 parent f918510 commit 6deb47e

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

emanote/test/Emanote/Pandoc/Renderer/CalloutSpec.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ spec :: Spec
1010
spec = do
1111
describe "callout" $ do
1212
it "type" . hedgehog $ do
13-
parseCalloutType "[!tip]" === Just Tip
14-
parseCalloutType "[!Note]" === Just Note
15-
parseCalloutType "[!INFO]" === Just Info
13+
parseCalloutType "[!tip]" === Just (CalloutType "tip")
14+
parseCalloutType "[!Note]" === Just (CalloutType "note")
15+
parseCalloutType "[!INFO]" === Just (CalloutType "info")

0 commit comments

Comments
 (0)