Skip to content

Commit 854fecf

Browse files
committed
Merge branch 'compiler/arbitrary-instances' of github.com:mlabs-haskell/lambda-buffers into compiler/arbitrary-instances
2 parents 4e43f6d + 8b9c792 commit 854fecf

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

lambda-buffers-compiler/src/LambdaBuffers/Compiler/ProtoCompat/Types.hs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -301,9 +301,6 @@ data CompilerResult = CompilerResult
301301

302302
type CompilerOutput = Either CompilerError CompilerResult
303303

304-
-- nonEmptyArbList :: forall a. Arbitrary a => Gen [a]
305-
-- nonEmptyArbList = getNonEmpty <$> arbitrary @(NonEmptyList a)
306-
307304
-- Orphan Instances
308305
instance Arbitrary a => Arbitrary (NonEmpty a) where
309306
arbitrary = sized f

lambda-buffers-compiler/test/Test/KindCheck.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ kcTestFailing =
6969
-}
7070
kcTestOrdering :: TestTree
7171
kcTestOrdering =
72-
testProperty "Module order inside the CompilerInput does not matter to the result of the kindchecker." $
72+
testProperty "Module order inside the CompilerInput does not matter." $
7373
forAllShrink (resize 5 genModuleIn2Layouts) shrink $
7474
\(l, r) -> eitherFailOrPass (check_ l) == eitherFailOrPass (check_ r)
7575
where

0 commit comments

Comments
 (0)