Skip to content

Commit 50f5f18

Browse files
committed
shouldBeEps: remove when comparing with Bools (of course)
1 parent ae9cb24 commit 50f5f18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/ArrayFire/ArithSpec.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ spec =
3434
it "Should take square root" $ do
3535
2 `shouldBeEps` sqrt @Double 4
3636
it "Should lt Array" $ do
37-
2 `A.lt` (3 :: Array Double) `shouldBeEps` True
37+
2 `A.lt` (3 :: Array Double) `shouldBe` True
3838
it "Should gt Array" $ do
39-
2 `A.gt` (3 :: Array Double) `shouldBeEps` False
39+
2 `A.gt` (3 :: Array Double) `shouldBe` False
4040
it "Should eq Array" $ do
41-
3 == (3 :: Array Double) `shouldBeEps` True
41+
3 == (3 :: Array Double) `shouldBe` True
4242
it "Should and Array" $ do
4343
(mkArray @CBool [1] [0] `and` mkArray [1] [1])
4444
`shouldBe` mkArray [1] [0]

0 commit comments

Comments
 (0)