diff markup/tests/builder.py @ 20:e3d3c1d8c98a

Fix tests broken in [20].
author cmlenz
date Mon, 19 Jun 2006 16:38:50 +0000
parents 821114ec4f69
children b8456279c444
line wrap: on
line diff
--- a/markup/tests/builder.py
+++ b/markup/tests/builder.py
@@ -22,7 +22,7 @@
 class ElementFactoryTestCase(unittest.TestCase):
 
     def test_link(self):
-        link = tag.A(href='#', title='Foo', accesskey=None)('Bar')
+        link = tag.a(href='#', title='Foo', accesskey=None)('Bar')
         bits = iter(link.generate())
         self.assertEqual((Stream.START, ('a', [('href', "#"), ('title', "Foo")]),
                           (-1, -1)), bits.next())
Copyright (C) 2012-2017 Edgewall Software