actions='#', fixed issue 1253, thanks yaribaud

This commit is contained in:
Massimo
2013-01-08 14:38:05 -06:00
parent 3788ec3f9a
commit 1dfb6824a3
4 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -74,7 +74,7 @@ class TestBareHelpers(unittest.TestCase):
def testFORM(self):
self.assertEqual(FORM('<>', _a='1', _b='2').xml(),
'<form a="1" action="" b="2" enctype="multipart/form-data" method="post">&lt;&gt;</form>')
'<form a="1" action="#" b="2" enctype="multipart/form-data" method="post">&lt;&gt;</form>')
def testH1(self):
self.assertEqual(H1('<>', _a='1', _b='2').xml(),