This commit is contained in:
Kenneth Reitz
2011-06-30 23:00:26 -04:00
parent 864f29cc4b
commit 23a5bb1443
+1 -1
View File
@@ -95,7 +95,7 @@ class TablibTestCase(unittest.TestCase):
def test_add_callable_column(self):
"""Verify adding column with values specified as callable."""
new_col = [lambda x: x[0]]
new_col = lambda x: x[0]
self.founders.append_col(new_col, header='first_again')