diff options
author | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-30 13:05:04 -0800 |
---|---|---|
committer | John MacFarlane <fiddlosopher@gmail.com> | 2011-12-30 13:05:04 -0800 |
commit | 83680430b3bda2938177d5a25e917c2e3645197a (patch) | |
tree | f8ed9fe3a135ae0f10e2522d7f4bd8344e2f30c9 /src/Tests/Writers | |
parent | 673c044a157e49c1cd6458c70d55afeac7d91970 (diff) | |
download | pandoc-83680430b3bda2938177d5a25e917c2e3645197a.tar.gz |
Updated ConTeXt tests.
Diffstat (limited to 'src/Tests/Writers')
-rw-r--r-- | src/Tests/Writers/ConTeXt.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Tests/Writers/ConTeXt.hs b/src/Tests/Writers/ConTeXt.hs index 704571e95..8cb67fe9f 100644 --- a/src/Tests/Writers/ConTeXt.hs +++ b/src/Tests/Writers/ConTeXt.hs @@ -43,9 +43,9 @@ tests = [ testGroup "inline code" ] , testGroup "headers" [ "level 1" =: - header 1 "My header" =?> "\\subject{My header}" + header 1 "My header" =?> "\\section{My header}" , property "header 1 property" $ \ils -> - context' (header 1 ils) == "\\subject{" ++ context' ils ++ "}" + context' (header 1 ils) == "\\section{" ++ context' ils ++ "}" ] , testGroup "bullet lists" [ "nested" =: |