use composition instead of lambda

This commit is contained in:
Daniel Barlow 2024-10-30 21:17:26 +00:00
parent aa1f69f3d4
commit 2befb534a1

View File

@ -63,11 +63,10 @@ test1 =
TestCase $ TestCase $
either either
(assertFailure . displayException) (assertFailure . displayException)
( \t -> ( assertEqual
assertEqual
"empty track has no elements" "empty track has no elements"
0 0
(Track.length t) . Track.length
) )
(Track.parse (wrap "")) (Track.parse (wrap ""))