Skip to content

Commit 92fc021

Browse files
committed
Fixed typo.
1 parent e9614ce commit 92fc021

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rules_haskell_tests/tests/RunTests.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ import System.Environment (lookupEnv)
1414

1515
import qualified System.Process as Process
1616
import Test.Hspec.Core.Spec (SpecM)
17-
import Test.Hspec (context, hspec, it, describe, runIO, after_, afterAll_)
17+
import Test.Hspec (context, hspec, it, describe, runIO, around_, afterAll_)
1818

1919
import BinModule (b)
2020
import GenModule (a)
2121

2222
import IntegrationTesting
2323

2424
main :: IO ()
25-
main = hspec $ afterAll_ shutdownBazel $ after_ printMemoryHook $ do
25+
main = hspec $ afterAll_ shutdownBazel $ around_ printMemoryHook $ do
2626
it "bazel test" $ do
2727
assertSuccess (bazel ["test", "//..."])
2828

0 commit comments

Comments
 (0)