From 686ffb81ef34f3775d9174cabbe86a5a704d8900 Mon Sep 17 00:00:00 2001 From: Michael Chavinda Date: Sun, 3 May 2026 13:45:37 -0700 Subject: [PATCH] chore: Use filterWhere for example --- tests/Operations/Filter.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Operations/Filter.hs b/tests/Operations/Filter.hs index 3154ca6..ad77791 100644 --- a/tests/Operations/Filter.hs +++ b/tests/Operations/Filter.hs @@ -69,7 +69,7 @@ filterColumnInexistentValues = ( assertEqual "Non existent filter value returns no rows" (0, 8) - (D.dimensions $ D.filter (F.col @Int "test1") (< 0) testData) + (D.dimensions $ D.filterWhere (F.col @Int "test1" .<. 0) testData) ) filterColumnAllValues :: Test