~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/chk_serializer.py

  • Committer: John Arbash Meinel
  • Date: 2009-06-04 21:50:04 UTC
  • mto: This revision was merged to the branch mainline in revision 4410.
  • Revision ID: john@arbash-meinel.com-20090604215004-ssiafybarfkm7dan
Change parent_ids back to a list, because there are other tests that expect it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
61
61
               'timezone': ('timezone', int, None),
62
62
               'timestamp': ('timestamp', str, float),
63
63
               'revision-id': ('revision_id', str, None),
64
 
               'parent-ids': ('parent_ids', list, tuple),
 
64
               'parent-ids': ('parent_ids', list, None),
65
65
               'inventory-sha1': ('inventory_sha1', str, None),
66
66
               'message': ('message', str, cache_utf8.decode),
67
67
               'properties': ('properties', dict, _validate_properties),