File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
test/Spec/BotPlutusInterface Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -903,9 +903,10 @@ assertCommandEqual err expected actual
903903 | commandEqual expected actual = return ()
904904 | otherwise = assertFailure $ err ++ " \n Expected:\n " ++ show expected ++ " \n Got:\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+ -}
909910commandEqual :: Text -> Text -> Bool
910911commandEqual " " " " = True
911912commandEqual " " _ = False
You can’t perform that action at this time.
0 commit comments