Skip to content

Commit

Permalink
Seems that inspection tests pass on GHC-8.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
phadej committed Apr 26, 2019
1 parent 685ba2b commit 7935496
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion test/Inspection.hs
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,12 @@ inspectionTests = testGroup "inspection"

-- byteaOid isn't inlined?
, testCase "inlineTypoid" $
assertFailure' $(inspectTest $ 'lhs02 ==- 'rhs02)
#if __GLASGOW_HASKELL__ >= 808
assertSuccess
#else
assertFailure'
#endif
$(inspectTest $ 'lhs02 ==- 'rhs02)
]

assertSuccess :: Result -> IO ()
Expand Down

0 comments on commit 7935496

Please sign in to comment.