Changeset 8202 for main/waeup.kofa/trunk/src/waeup/kofa/utils/tests
- Timestamp:
- 18 Apr 2012, 05:12:32 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/utils/tests/test_batching.py
r7858 r8202 104 104 105 105 def updateEntry(self, obj, row, site): 106 # This is not strictly necessary, as the default107 # updateEntry method does exactly the same108 106 for key, value in row.items(): 109 setattr(obj, key, value) 107 if value is not None: 108 setattr(obj, key, value) 110 109 111 110 class BatchProcessorTests(FunctionalTestCase):
Note: See TracChangeset for help on using the changeset viewer.