Skip to content
This repository was archived by the owner on Apr 1, 2025. It is now read-only.

Commit 73eb76b

Browse files
committed
Fix deprecations.
1 parent 0f0b669 commit 73eb76b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • semantic/test/Data/Semigroup/App

semantic/test/Data/Semigroup/App/Spec.hs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ merge = AppMerge <$> Gen.maybe (Gen.string (Range.linear 0 10) Gen.ascii)
1717
testTree :: Tasty.TestTree
1818
testTree = Tasty.testGroup "Data.Semigroup.App"
1919
[ Tasty.testGroup "App"
20-
[ Tasty.testProperty "is associative" (associative (<>) app)
20+
[ Tasty.testPropertyNamed "is associative" "App_is_associative" (associative (<>) app)
2121
]
2222
, Tasty.testGroup "AppMerge"
23-
[ Tasty.testProperty "is associative" (associative (<>) merge)
24-
, Tasty.testProperty "is monoidal" (monoidal merge)
23+
[ Tasty.testPropertyNamed "is associative" "AppMerge_is_associative" (associative (<>) merge)
24+
, Tasty.testPropertyNamed "is monoidal" "AppMerge_is_monoidal" (monoidal merge)
2525
]
2626
]

0 commit comments

Comments
 (0)