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 $
either
(assertFailure . displayException)
( \t ->
assertEqual
"empty track has no elements"
0
(Track.length t)
( assertEqual
"empty track has no elements"
0
. Track.length
)
(Track.parse (wrap ""))