File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
booster/unit-tests/Test/Booster/Pattern Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -294,7 +294,7 @@ runRewrite t = do
294
294
conf <- testConf
295
295
(counter, _, res) <-
296
296
runNoLoggingT $
297
- performRewrite conf $
297
+ performRewrite conf mempty $
298
298
Pattern_ t
299
299
pure (counter, fmap (. term) res)
300
300
@@ -438,7 +438,7 @@ supportsDepthControl =
438
438
rewritesToDepth (MaxDepth depth) (Steps n) t t' f = do
439
439
conf <- testConf
440
440
(counter, _, res) <-
441
- runNoLoggingT $ performRewrite conf{mbMaxDepth = Just depth} $ Pattern_ t
441
+ runNoLoggingT $ performRewrite conf{mbMaxDepth = Just depth} mempty $ Pattern_ t
442
442
(counter, fmap (. term) res) @?= (n, f t')
443
443
444
444
supportsCutPoints :: TestTree
@@ -492,7 +492,7 @@ supportsCutPoints =
492
492
conf <- testConf
493
493
(counter, _, res) <-
494
494
runNoLoggingT $
495
- performRewrite conf{cutLabels = [lbl]} $
495
+ performRewrite conf{cutLabels = [lbl]} mempty $
496
496
Pattern_ t
497
497
(counter, fmap (. term) res) @?= (n, f t')
498
498
@@ -524,5 +524,5 @@ supportsTerminalRules =
524
524
rewritesToTerminal lbl (Steps n) t t' f = do
525
525
conf <- testConf
526
526
(counter, _, res) <-
527
- runNoLoggingT $ performRewrite conf{terminalLabels = [lbl]} $ Pattern_ t
527
+ runNoLoggingT $ performRewrite conf{terminalLabels = [lbl]} mempty $ Pattern_ t
528
528
(counter, fmap (. term) res) @?= (n, f t')
You can’t perform that action at this time.
0 commit comments