From 5f9e91656e0fa740546ec36174918f0eb0928288 Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Sun, 2 Sep 2012 15:03:56 -0600 Subject: [PATCH] Fix LaTeX tests. --- test/test_markup.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/test_markup.rb b/test/test_markup.rb index 1ad2d164..c62ffd09 100644 --- a/test/test_markup.rb +++ b/test/test_markup.rb @@ -670,13 +670,13 @@ end test "TeX block syntax" do content = 'a \[ a^2 \] b' - output = "

ab

" + output = "

ab

" compare(content, output, 'md') end test "TeX inline syntax" do content = 'a \( a^2 \) b' - output = "

ab

" + output = "

ab

" compare(content, output, 'md') end