~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_inventory_delta.py

  • Committer: Andrew Bennetts
  • Date: 2009-04-02 05:53:12 UTC
  • mto: This revision was merged to the branch mainline in revision 4242.
  • Revision ID: andrew.bennetts@canonical.com-20090402055312-h7mvgumvm7e620mj
Fix nits in spelling and naming.

Show diffs side-by-side

added added

removed removed

Lines of Context:
446
446
None\x00/\x00new-root-id\x00\x00changed-in\x00dir
447
447
None\x00/configure\x00exec-id\x00new-root-id\x00old-rev\x00file\x0030\x00Y\x00some-sha
448
448
"""
449
 
        serialised = ''.join(lines)
450
 
        self.assertIsInstance(serialised, str)
451
 
        self.assertEqual(expected, serialised)
 
449
        serialized = ''.join(lines)
 
450
        self.assertIsInstance(serialized, str)
 
451
        self.assertEqual(expected, serialized)
452
452
 
453
453
 
454
454
class TestContent(TestCase):