chore: fix test

This commit is contained in:
Leonardo de Moura 2020-08-18 15:19:22 -07:00
parent 647b917b49
commit 9519479726

View file

@ -2,7 +2,7 @@ open Lean
partial def expandHash : Syntax → StateT Bool MacroM Syntax
| Syntax.node k args =>
if k == `doHash then do set true; `(←MonadState.get)
if k == `doHash then do set true; `(←HasGet.get)
else do
args ← args.mapM expandHash;
pure $ Syntax.node k args