Skip to content

Commit

Permalink
apply hlint suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
byorgey committed Dec 19, 2024
1 parent e0c87a6 commit 08a22cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/unit/TestEval.hs
Original file line number Diff line number Diff line change
Expand Up @@ -352,11 +352,11 @@ testEval g =
)
, testCase
"read empty record"
("read \"[]\" : []" `evaluatesTo` (VRcd M.empty))
("read \"[]\" : []" `evaluatesTo` VRcd M.empty)
, testCase
"read singleton record"
( "read \"[x = 2]\" : [x : Int]"
`evaluatesTo` (VRcd (M.singleton "x" (VInt 2)))
`evaluatesTo` VRcd (M.singleton "x" (VInt 2))
)
, testCase
"read doubleton record"
Expand Down

0 comments on commit 08a22cb

Please sign in to comment.