From 1aafc7e2f48cc8f07c9e782e198378db642fe9bc Mon Sep 17 00:00:00 2001 From: James Patrick Robinson Jr Date: Wed, 28 Aug 2013 14:03:58 -0400 Subject: [PATCH] Fixed callable collumn test the test was sending a list instead of a function --- test_tablib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test_tablib.py b/test_tablib.py index 252dde4..8245944 100755 --- a/test_tablib.py +++ b/test_tablib.py @@ -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')