From dba02d6df32534aac5d257f2d28596238d248942 Mon Sep 17 00:00:00 2001
From: Mateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>
Date: Sat, 3 May 2014 15:40:11 +0200
Subject: [PATCH] =?UTF-8?q?Disambiguate=20=E2=80=98die=E2=80=99=20in=20tes?=
 =?UTF-8?q?t=20runners.?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 html-test/run.lhs  | 2 +-
 latex-test/run.lhs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/html-test/run.lhs b/html-test/run.lhs
index 153ab32c..a8664363 100755
--- a/html-test/run.lhs
+++ b/html-test/run.lhs
@@ -41,7 +41,7 @@ main = do
 test :: IO ()
 test = do
   x <- doesFileExist haddockPath
-  unless x $ die "you need to run 'cabal build' successfully first"
+  unless x $ System.Exit.die "you need to run 'cabal build' successfully first"
 
   contents <- getDirectoryContents testDir
   args <- getArgs
diff --git a/latex-test/run.lhs b/latex-test/run.lhs
index 423dc6fd..c1d48d97 100755
--- a/latex-test/run.lhs
+++ b/latex-test/run.lhs
@@ -41,7 +41,7 @@ main = do
 test :: IO ()
 test = do
   x <- doesFileExist haddockPath
-  unless x $ die "you need to run 'cabal build' successfully first"
+  unless x $ System.Exit.die "you need to run 'cabal build' successfully first"
 
   contents <- getDirectoryContents testDir
 
-- 
GitLab