From a6882a63182361b75ed3be370e529c4cb229f389 Mon Sep 17 00:00:00 2001 From: Roly Perera Date: Tue, 3 Oct 2023 17:23:03 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=A9=20[refactor]:=20Further=20rollout.?= =?UTF-8?q?=20Bit=20of=20work=20to=20do=20tomorrow=20to=20handle=20data=20?= =?UTF-8?q?sets=20properly.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test/Many.purs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Many.purs b/test/Many.purs index cf233eddc..d1c27235a 100644 --- a/test/Many.purs +++ b/test/Many.purs @@ -23,9 +23,9 @@ bwdMany specs n = zip (specs <#> _.file) (specs <#> bwdOne) where folder = File "slicing/" bwdOne { file, file_expect, δv, fwd_expect } = do - gconfig <- openDefaultImports + progCxt <- defaultImports2 bwd_expect <- loadFile (Folder "fluid/example") (folder <> File file_expect) - testWithSetup n (folder <> File file) gconfig { δv, fwd_expect, bwd_expect } + testWithSetup2 n (folder <> File file) progCxt { δv, fwd_expect, bwd_expect } withDatasetMany :: Array TestWithDatasetSpec -> Int -> Array (String × Aff BenchRow) withDatasetMany specs n = zip (specs <#> _.file) (specs <#> withDatasetOne)