Fixed callable collumn test

the test was sending a list instead of a function
This commit is contained in:
James Patrick Robinson Jr
2013-08-28 14:03:58 -04:00
parent 783eccc67d
commit 1aafc7e2f4
+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')