Remove debug

merge-requests/8/head
Bob Mottram 2020-07-08 16:21:04 +01:00
parent db64ceb87d
commit 31e40671a9
1 changed files with 0 additions and 1 deletions

View File

@ -1879,7 +1879,6 @@ def testRemoveHtml():
testStr = 'This string has no html.'
assert(removeHtml(testStr) == testStr)
testStr = 'This string <a href="1234.567">has html</a>.'
print(removeHtml(testStr))
assert(removeHtml(testStr) == 'This string has html.')