Skip to content

Commit 753e214

Browse files
committed
Remove use of NumericUnderscores for compatibility
...with GHC 8.2 and 8.4.
1 parent db38c82 commit 753e214

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/Regressions.hs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{-# LANGUAGE BinaryLiterals #-}
22
{-# LANGUAGE CPP #-}
33
{-# LANGUAGE MagicHash #-}
4-
{-# LANGUAGE NumericUnderscores #-}
54
{-# LANGUAGE ScopedTypeVariables #-}
65
{-# LANGUAGE TypeApplications #-}
76
{-# LANGUAGE UnboxedTuples #-}
@@ -268,7 +267,7 @@ issue420 = do
268267
-- Issue 491
269268

270269
issue491 :: TestTree
271-
issue491 = localOption (mkTimeout 1_000_000) $ testGroup "issue491" $
270+
issue491 = localOption (mkTimeout 1000000) $ testGroup "issue491" $
272271
[ testCase "1" $ assert $ m [0, -1] `HML.isSubmapOf` m [0, -1]
273272
, testCase "2" $ assert $ m [1, 0b11111] `HML.isSubmapOf` m [1, 0b11111]
274273
, testCase "3" $ assert $ m [1, 0b11111] `HML.isSubmapOf` m [1, 0b11111, 42]

0 commit comments

Comments
 (0)