From c70799be09cad2f1ba05219a853ad284d730b7f6 Mon Sep 17 00:00:00 2001 From: Matt Parsons Date: Thu, 30 Sep 2021 11:59:30 -0600 Subject: [PATCH] esqueleto-3.5.3.0 (#292) --- test/Common/Test.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Common/Test.hs b/test/Common/Test.hs index b5daa95..9928fcd 100644 --- a/test/Common/Test.hs +++ b/test/Common/Test.hs @@ -2313,8 +2313,8 @@ testExperimentalFrom = do rows <- select $ do (persons :& profiles :& posts) <- Experimental.from $ q pure (persons ^. PersonId, profiles ^. ProfileId, posts ^. BlogPostId) - let result = coerce rows :: [(PersonId, ProfileId, BlogPostId)] - -- We don't care about eh result of the query, only that it + let result = rows :: [(Value PersonId, Value ProfileId, Value BlogPostId)] + -- We don't care about the result of the query, only that it -- rendered & executed. asserting noExceptions