Skip to content

Commit a1f703a

Browse files
committed
ip
1 parent 72228c7 commit a1f703a

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

plutus-tx/src/PlutusTx/Bool.hs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ import Prelude (Bool (..), otherwise)
1919
False
2020
2121
>>> False && error ()
22-
False
23-
-}
22+
False -}
2423
infixr 3 &&
2524

2625
(&&) :: Bool -> Bool -> Bool
@@ -33,8 +32,7 @@ infixr 3 &&
3332
True
3433
3534
>>> True || error ()
36-
True
37-
-}
35+
True -}
3836
infixr 2 ||
3937

4038
(||) :: Bool -> Bool -> Bool

plutus-tx/test/Bool/Spec.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module Bool.Spec (boolTests) where
22

3-
import PlutusTx.Builtins as Tx
43
import PlutusTx.Bool qualified as Tx
4+
import PlutusTx.Builtins as Tx
55

6-
import Prelude (($))
76
import Test.Tasty
87
import Test.Tasty.HUnit
8+
import Prelude (($))
99

1010
boolTests :: TestTree
1111
boolTests =

plutus-tx/test/Spec.hs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
module Main (main) where
77

88
import Blueprint.Definition.Spec qualified
9+
import Bool.Spec (boolTests)
910
import Codec.CBOR.FlatTerm qualified as FlatTerm
1011
import Codec.Serialise (deserialiseOrFail, serialise)
1112
import Codec.Serialise qualified as Serialise
@@ -19,7 +20,6 @@ import Hedgehog (MonadGen, Property, PropertyT, annotateShow, assert, forAll, pr
1920
import Hedgehog.Gen qualified as Gen
2021
import Hedgehog.Range qualified as Range
2122
import List.Spec (listTests)
22-
import Bool.Spec (boolTests)
2323
import PlutusCore.Data (Data (B, Constr, I, List, Map))
2424
import PlutusTx.Enum (Enum (..))
2525
import PlutusTx.Numeric (negate)

0 commit comments

Comments
 (0)