From e5e2b0f9abc96fd30bfcec1b2653374e34b9c6dd Mon Sep 17 00:00:00 2001
From: John MacFarlane <jgm@berkeley.edu>
Date: Thu, 20 Jan 2011 22:38:16 -0800
Subject: Fixed the two test cases that were intentionally set to fail.

---
 tests/Tests/Readers/LaTeX.hs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'tests')

diff --git a/tests/Tests/Readers/LaTeX.hs b/tests/Tests/Readers/LaTeX.hs
index 71eaff79f..55bd0400f 100644
--- a/tests/Tests/Readers/LaTeX.hs
+++ b/tests/Tests/Readers/LaTeX.hs
@@ -13,7 +13,7 @@ latex s = (s, normalize . readLaTeX defaultParserState{stateSmart = True} $ s)
 tests :: [Test]
 tests = [ testGroup "basic"
           [ "simple" =:
-            latex "word" =?> str "wor d"
+            latex "word" =?> str "word"
           , "space" =:
             latex "some text" =?> text "some text"
           , "emphasized" =:
@@ -29,7 +29,7 @@ tests = [ testGroup "basic"
             latex "\\subsubsection{header}" =?> header 3 (str "header")
           , "emph" =:
             latex "\\section{text \\emph{emph}}" =?>
-              header 1 (str "text2" +++ space +++ emph (str "emph"))
+              header 1 (str "text" +++ space +++ emph (str "emph"))
           , "link" =:
             latex "\\section{text \\href{/url}{link}}" =?>
               header 1 (str "text" +++ space +++ link "/url" "" (str "link"))
-- 
cgit v1.2.3