aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYann Herklotz <git@ymhg.org>2019-03-31 22:17:54 +0100
committerYann Herklotz <git@ymhg.org>2019-03-31 22:17:54 +0100
commitd077ab33940f23873eb34254cc8b168bef4a82c9 (patch)
tree3fd2301755808e240430365db6325114351e6066 /src
parent1930e7686025601e22de49aa4d4dbeed8311caa0 (diff)
downloadverismith-d077ab33940f23873eb34254cc8b168bef4a82c9.tar.gz
verismith-d077ab33940f23873eb34254cc8b168bef4a82c9.zip
Fix some of the tests
Diffstat (limited to 'src')
-rw-r--r--src/VeriFuzz/Parser/Parser.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/VeriFuzz/Parser/Parser.hs b/src/VeriFuzz/Parser/Parser.hs
index 5a1d163..4ba36e2 100644
--- a/src/VeriFuzz/Parser/Parser.hs
+++ b/src/VeriFuzz/Parser/Parser.hs
@@ -125,7 +125,8 @@ systemFunc s = satisfy' matchId
parseFunction :: Parser Function
parseFunction =
- systemFunc "unsigned" $> UnSignedFunc <|> systemFunc "signed" $> SignedFunc
+ systemFunc "$unsigned" $> UnSignedFunc
+ <|> systemFunc "$signed" $> SignedFunc
parseFun :: Parser Expr
parseFun = do