You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by tv...@apache.org on 2012/12/14 16:03:29 UTC

[32/50] git commit: [#5343] Remove invalid test

[#5343] Remove invalid test


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/d765ac47
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/d765ac47
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/d765ac47

Branch: refs/heads/ph/4655
Commit: d765ac4713fa42b854fc0e484d13f9f71cd93ca8
Parents: 9bc5bb6
Author: Tim Van Steenburgh <tv...@gmail.com>
Authored: Thu Dec 13 21:06:59 2012 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Thu Dec 13 21:06:59 2012 +0000

----------------------------------------------------------------------
 Allura/allura/tests/test_globals.py |    4 ----
 1 files changed, 0 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/d765ac47/Allura/allura/tests/test_globals.py
----------------------------------------------------------------------
diff --git a/Allura/allura/tests/test_globals.py b/Allura/allura/tests/test_globals.py
index dbd9b06..cbf5636 100644
--- a/Allura/allura/tests/test_globals.py
+++ b/Allura/allura/tests/test_globals.py
@@ -182,10 +182,6 @@ def test_markdown_links():
     text = g.markdown.convert('See [test:wiki:Home]')
     assert '<a class="alink" href="/p/test/wiki/Home/">[test:wiki:Home]</a>' in text, text
 
-def test_markdown_error():
-    r = g.markdown_wiki.convert('[:::]')
-    assert 'The markdown supplied could not be parsed correctly.' in r, r
-
 def test_markdown_and_html():
     r = g.markdown_wiki.convert('<div style="float:left">blah</div>')
     assert '<div style="float: left;">blah</div>' in r, r