diff options
author | Jason Creighton <jcreigh@gmail.com> | 2007-05-10 05:27:31 +0200 |
---|---|---|
committer | Jason Creighton <jcreigh@gmail.com> | 2007-05-10 05:27:31 +0200 |
commit | b4406e21e605005a7724c8645915e7afdc090dea (patch) | |
tree | 85e84f15bee462cb8e6a4a2bad502b2bfd0a524f /tests | |
parent | d56eba2fb972e108648f722d2f46c8d690b7b0d9 (diff) | |
download | metatile-b4406e21e605005a7724c8645915e7afdc090dea.tar metatile-b4406e21e605005a7724c8645915e7afdc090dea.zip |
bump LOC limit to 550
darcs-hash:20070510032731-b9aa7-3fccb4cbb55c59636264a451c091b743c549e1f9
Diffstat (limited to 'tests')
-rw-r--r-- | tests/loc.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/loc.hs b/tests/loc.hs index 289c629..3d83925 100644 --- a/tests/loc.hs +++ b/tests/loc.hs @@ -8,7 +8,7 @@ main = do foo <- getContents putStrLn $ show loc -- uncomment the following to check for mistakes in isntcomment -- putStr $ unlines $ actual_loc - when (loc > 500) $ fail "Too many lines of code!" + when (loc > 550) $ fail "Too many lines of code!" isntcomment "" = False isntcomment ('-':'-':_) = False |