From aa258dbe6b802dce4171f493bfc76d56819457ad Mon Sep 17 00:00:00 2001 From: Scott Chacon Date: Tue, 19 Jul 2011 12:55:43 -0700 Subject: [PATCH] fix test breaking due to new footnote anchor --- 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 2ad76088..988a34d4 100644 --- a/test/test_markup.rb +++ b/test/test_markup.rb @@ -476,8 +476,8 @@ context "Markup" do test "id prefix added" do content = "h2(#foo). xxxx[1]\n\nfn1.footnote" output = "

xxxx" + - "1

" + - "\n

1 footnote

" + "1" + + "\n

1 footnote

" compare(content, output, :textile) end