reverse actual and expected in Expect

otherwise the error messages when test fails are arse about face
This commit is contained in:
Daniel Barlow 2024-10-24 17:13:17 +01:00
parent b78dbda7b8
commit 6b3c456c41

View File

@ -20,6 +20,6 @@ specs =
in
case r of
(Ok trk) -> Expect.equalLists trk expected
(Ok trk) -> Expect.equalLists expected trk
_ -> Expect.fail "not ok"
]