Skip to content

Commit 7c543fe

Browse files
authored
Merge pull request #718 from IntersectMBO/jdral/quickcheck-lockstep-0.7.0
Use `quickcheck-lockstep-0.7.0` from Hackage
2 parents 84c91d0 + 407a48c commit 7c543fe

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

cabal.project.release

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
index-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

56
packages:
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

prototypes/ScheduledMergesTestQLS.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

test/Test/Database/LSMTree/StateMachine.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

16091609
runIOSim ::
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@.

0 commit comments

Comments
 (0)