Skip to content

Commit d9e762c

Browse files
Formatting
1 parent d4cc01b commit d9e762c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

test/Spec/BotPlutusInterface/Contract.hs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -903,9 +903,10 @@ assertCommandEqual err expected actual
903903
| commandEqual expected actual = return ()
904904
| otherwise = assertFailure $ err ++ "\nExpected:\n" ++ show expected ++ "\nGot:\n" ++ show actual
905905

906-
-- | Checks if a command matches an expected command pattern
907-
-- Where a command pattern may use new lines in place of spaces, and use the wildcard `?` to match up to the next space
908-
-- E.g. `commandEqual "123\n456 ? 0" "123 456 789 0"` == `True`
906+
{- | Checks if a command matches an expected command pattern
907+
Where a command pattern may use new lines in place of spaces, and use the wildcard `?` to match up to the next space
908+
E.g. `commandEqual "123\n456 ? 0" "123 456 789 0"` == `True`
909+
-}
909910
commandEqual :: Text -> Text -> Bool
910911
commandEqual "" "" = True
911912
commandEqual "" _ = False

0 commit comments

Comments
 (0)