Skip to content

Commit f89a640

Browse files
author
Serhii Khoma
committed
fix: ci
1 parent e0f8278 commit f89a640

File tree

3 files changed

+2
-16
lines changed

3 files changed

+2
-16
lines changed

spago.lock

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
"arrays",
3434
"assert",
3535
"console",
36-
"debug",
3736
"effect",
3837
"foldable-traversable",
3938
"newtype",
@@ -48,7 +47,6 @@
4847
"const",
4948
"contravariant",
5049
"control",
51-
"debug",
5250
"distributive",
5351
"effect",
5452
"either",
@@ -692,15 +690,6 @@
692690
"prelude"
693691
]
694692
},
695-
"debug": {
696-
"type": "registry",
697-
"version": "6.0.2",
698-
"integrity": "sha256-vmkYFuXYuELBzeauvgHG6E6Kf/Hp1dAnxwE9ByHfwSg=",
699-
"dependencies": [
700-
"functions",
701-
"prelude"
702-
]
703-
},
704693
"distributive": {
705694
"type": "registry",
706695
"version": "6.0.0",

spago.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ package:
1515
dependencies:
1616
- console
1717
- effect
18-
- debug
19-
- effect
2018
- quickcheck
2119
- assert
2220
- newtype

test/Test/Main.purs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ import Data.Int (base36)
99
import Data.Maybe (Maybe(..), fromMaybe, isJust)
1010
import Data.Monoid.Conj (Conj(..))
1111
import Data.Newtype (un)
12-
import Debug (spy)
1312
import Effect (Effect)
1413
import Effect.Console (log)
1514
import JS.BigInt (BigInt, and, binary, decimal, even, fromInt, fromString, fromStringAs, fromTLInt, hexadecimal, not, octal, odd, or, pow, shl, shr, toInt, toString, toStringAs, xor)
@@ -120,8 +119,8 @@ main = do
120119

121120
log "pow should perform integer exponentiation and yield 0 for negative exponents"
122121
assert $ three `pow` four == fromInt 81
123-
assert $ (spy "2" $ three `pow` -two) == (spy "zero" zero)
124-
assert $ (spy "3" $ three `pow` zero) == one
122+
assert $ (three `pow` -two) == zero
123+
assert $ (three `pow` zero) == one
125124
assert $ zero `pow` zero == one
126125

127126
log "Logic"

0 commit comments

Comments
 (0)