diff --git a/TESTS.md b/TESTS.md index d4c76e009..892b84c03 100644 --- a/TESTS.md +++ b/TESTS.md @@ -3413,33 +3413,21 @@ isDebug = False Conditionals inside a `where` and empty lines -```haskell given +```haskell foo = bar + baz where -#if 0 - bar = 1 - - baz = 1 -#else - bar = 2 - baz = 2 -#endif -``` - -```haskell expect -foo = bar + baz - where #if 0 bar = 1 + baz = 1 #else bar = 2 + baz = 2 #endif ``` - Macro definitions (`#define`) ```haskell