From dd45746a4116a262723940fd501e5319d8e0ef33 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Sun, 6 May 2012 19:40:35 +0900 Subject: [PATCH] fix unit test --- tests/test_importing.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_importing.py b/tests/test_importing.py index d842e04c3..457036cf5 100644 --- a/tests/test_importing.py +++ b/tests/test_importing.py @@ -84,11 +84,11 @@ def test_csv(): i.run() # four problems - too many & too few fields, a missing front, and a # duplicate entry - assert len(i.log) == 4 + assert len(i.log) == 5 assert i.total == 5 # if we run the import again, it should update instead i.run() - assert len(i.log) == 4 + assert len(i.log) == 5 assert i.total == 5 # if updating is disabled, count will be 0 i.update = False