diff options
| author | Kenneth Reitz <me@kennethreitz.com> | 2011-06-30 23:00:26 -0400 |
|---|---|---|
| committer | Kenneth Reitz <me@kennethreitz.com> | 2011-06-30 23:00:26 -0400 |
| commit | 23a5bb14432eda6aa38f47c1bb7e4f6a4b4aa21a (patch) | |
| tree | 08d42bce0757940095e41f3a32a647e048178b30 /test_tablib.py | |
| parent | 864f29cc4b833fc3ac8cdeaa695d5894901d35b5 (diff) | |
| download | tablib-23a5bb14432eda6aa38f47c1bb7e4f6a4b4aa21a.tar.gz | |
yay
Diffstat (limited to 'test_tablib.py')
| -rwxr-xr-x | test_tablib.py | 2 |
1 files changed, 1 insertions, 1 deletions
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') |
