[ZPT] CVS: Packages/TAL - test_htmltalparser.py:1.10
fred@digicool.com
fred@digicool.com
Fri, 6 Apr 2001 15:54:19 -0400 (EDT)
Update of /cvs-repository/Packages/TAL/test
In directory korak:/tmp/cvs-serv16835
Modified Files:
test_htmltalparser.py
Log Message:
Revise a test that requires "<tag attr=>" to be accepted -- it is not!
--- Updated File test_htmltalparser.py in package Packages/TAL --
--- test_htmltalparser.py 2001/04/06 00:56:29 1.9
+++ test_htmltalparser.py 2001/04/06 19:54:18 1.10
@@ -96,8 +96,8 @@
"""<a b='xxx\n\txxx' c="yyy\t\nyyy" d='\txyz\n'>""", [
('rawtext',
'<a b="xxx\n\txxx" c="yyy\t\nyyy" d="\txyz\n"></a>')])
- self._run_check("""<a b='' c="" d=>""", [
- ('rawtext', '<a b="" c="" d=""></a>'),
+ self._run_check("""<a b='' c="">""", [
+ ('rawtext', '<a b="" c=""></a>'),
])
def check_code_attr_entity_replacement(self):