File tree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed
test/Test/Database/LSMTree Expand file tree Collapse file tree 3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 11index-state:
22 -- Bump this if you need newer packages from Hackage
3- , hackage.haskell.org 2025-05-01T00:00:00Z
3+ -- quickcheck-lockstep-0.7.0
4+ , hackage.haskell.org 2025-05-09T15:42:47Z
45
56packages:
67 .
@@ -30,10 +31,4 @@ source-repository-package
3031 tag: 55efd82e10c2b2d339bdfdc29d8d4bd8484150ba
3132 subdir:
3233 fs-api
33- fs-sim
34-
35- -- ghc-9.12 and shrinkVar
36- source-repository-package
37- type: git
38- location: https://github.com/well-typed/quickcheck-lockstep
39- tag: a2d95e9d0cdee376353ad9587faecc68a5c1f0f0
34+ fs-sim
Original file line number Diff line number Diff line change @@ -375,7 +375,7 @@ runActionIO action lookUp =
375375 ADump var -> logicalValue (lookUpVar var)
376376 where
377377 lookUpVar :: ModelVar Model a -> a
378- lookUpVar = lookUpGVar (Proxy :: Proxy IO ) lookUp
378+ lookUpVar = realLookupVar (Proxy :: Proxy IO ) lookUp
379379
380380 tr :: Tracer (ST RealWorld ) Event
381381 tr = nullTracer
Original file line number Diff line number Diff line change @@ -1604,7 +1604,7 @@ runIO action lookUp = ReaderT $ \ !env -> do
16041604 session = envSession env
16051605
16061606 lookUp' :: Var h x -> Realized IO x
1607- lookUp' = lookUpGVar (Proxy @ (RealMonad h IO )) lookUp
1607+ lookUp' = realLookupVar (Proxy @ (RealMonad h IO )) lookUp
16081608
16091609runIOSim ::
16101610 forall s a h . Class. IsTable h
@@ -1715,7 +1715,7 @@ runIOSim action lookUp = ReaderT $ \ !env -> do
17151715 session = envSession env
17161716
17171717 lookUp' :: Var h x -> Realized (IOSim s ) x
1718- lookUp' = lookUpGVar (Proxy @ (RealMonad h (IOSim s ))) lookUp
1718+ lookUp' = realLookupVar (Proxy @ (RealMonad h (IOSim s ))) lookUp
17191719
17201720-- | @'runRealWithInjectedErrors' _ errsVar merrs action rollback@ runs @action@
17211721-- with injected errors if available in @merrs@.
You can’t perform that action at this time.
0 commit comments