Placate hlint.
parent
657ababae4
commit
39ca4b9b15
|
@ -19,12 +19,12 @@ problematic =
|
||||||
|
|
||||||
testStateDropsWrites :: Tasty.TestTree
|
testStateDropsWrites :: Tasty.TestTree
|
||||||
testStateDropsWrites = HUnit.testCase "State.Strict drops writes" $ do
|
testStateDropsWrites = HUnit.testCase "State.Strict drops writes" $ do
|
||||||
result <- State.execState 'a' $ problematic
|
result <- State.execState 'a' problematic
|
||||||
result HUnit.@?= 'a' -- writes are lost
|
result HUnit.@?= 'a' -- writes are lost
|
||||||
|
|
||||||
testIOStatePreservesWrites :: Tasty.TestTree
|
testIOStatePreservesWrites :: Tasty.TestTree
|
||||||
testIOStatePreservesWrites = HUnit.testCase "State.IORef preserves writes" $ do
|
testIOStatePreservesWrites = HUnit.testCase "State.IORef preserves writes" $ do
|
||||||
result <- IOState.execState 'a' $ problematic
|
result <- IOState.execState 'a' problematic
|
||||||
result HUnit.@?= 'x'
|
result HUnit.@?= 'x'
|
||||||
|
|
||||||
tests :: Tasty.TestTree
|
tests :: Tasty.TestTree
|
||||||
|
|
Loading…
Reference in New Issue